diff --git a/functions/pdf.xml b/functions/pdf.xml
index 59173ea280..8e1545ab35 100644
--- a/functions/pdf.xml
+++ b/functions/pdf.xml
@@ -680,6 +680,42 @@ fclose($fp);
+
+
+ PDF_show_boxed
+ Output text in a box
+
+
+ Description
+
+ void pdf_show_boxed
+ int pdf document
+ string text
+ double x-coor
+ double y-coor
+ double width
+ double height
+ string mode
+
+
+ The PDF_show_boxed function outputs the
+ string text in a box with its lower left position
+ at (x-coor, y-coor).
+ The boxes dimension is height by
+ width. The parameter mode
+ determines how the text is type seet. If width
+ and height are zero, the
+ mode can be "left", "right" or "center".
+ If width or height is
+ unequal zero it can also be "justify" or "fulljustify".
+
+
+ See also PDF_show,
+ PDF_show_xy.
+
+
+
+
PDF_show_xy
@@ -760,7 +796,7 @@ fclose($fp);
Description
- void pdf_set leading
+ void pdf_set_leading
int pdf document
double distance
@@ -775,6 +811,26 @@ fclose($fp);
+
+
+ PDF_set_parameter
+ Sets certain parameters
+
+
+ Description
+
+ void pdf_set_parameter
+ int pdf document
+ string name
+ string value
+
+
+ The PDF_set_parameter function sets several
+ parameters of pdflib.
+
+
+
+
PDF_set_text_rendering
@@ -920,6 +976,29 @@ fclose($fp);
+
+
+ PDF_skew
+ Skews the coordinate system
+
+
+ Description
+
+ void pdf_skew
+ int pdf document
+ double alpha
+ double beta
+
+
+ The PDF_skew function skew the coordinate
+ system by alpha (x) and
+ beta (y) degrees.
+ alpha and beta may
+ not be 90 or 270 degrees.
+
+
+
+
PDF_continue_text