From 1cb44818d15db6d52d846c833d843e9a8b1535b2 Mon Sep 17 00:00:00 2001 From: Pierre Labastie Date: Fri, 13 Mar 2020 14:38:37 +0000 Subject: Completely remove docbook snapshot git-svn-id: http://svn.linuxfromscratch.org/LFS/trunk/BOOK@11779 4aa44e1e-78dd-0310-a6d2-fbcd4c07a689 --- .../lfs-xsl/docbook-xsl-1.78.1/fo/table.xml | 135 --------------------- 1 file changed, 135 deletions(-) delete mode 100644 stylesheets/lfs-xsl/docbook-xsl-1.78.1/fo/table.xml (limited to 'stylesheets/lfs-xsl/docbook-xsl-1.78.1/fo/table.xml') diff --git a/stylesheets/lfs-xsl/docbook-xsl-1.78.1/fo/table.xml b/stylesheets/lfs-xsl/docbook-xsl-1.78.1/fo/table.xml deleted file mode 100644 index bf7bf6bc1..000000000 --- a/stylesheets/lfs-xsl/docbook-xsl-1.78.1/fo/table.xml +++ /dev/null @@ -1,135 +0,0 @@ - - - - - - Formatting Object Table Reference - - $Id: table.xsl 9666 2012-11-14 04:42:56Z bobstayton $ - - - - Introduction - -This is technical reference documentation for the FO - table-processing templates in the DocBook XSL Stylesheets. - - -This is not intended to be user documentation. It is - provided for developers writing customization layers for the - stylesheets. - - - - - -calc.column.width -Calculate an XSL FO table column width specification from a -CALS table column width specification. - - -<xsl:template name="calc.column.width"> -<xsl:param name="colwidth">1*</xsl:param> - ... -</xsl:template> - -Description - -CALS expresses table column widths in the following basic -forms: - - - - - - -99.99units, a fixed length specifier. - - - - -99.99, a fixed length specifier without any units. - - - - -99.99*, a relative length specifier. - - - - -99.99*+99.99units, a combination of both. - - - - - - -The CALS units are points (pt), picas (pi), centimeters (cm), -millimeters (mm), and inches (in). These are the same units as XSL, -except that XSL abbreviates picas "pc" instead of "pi". If a length -specifier has no units, the CALS default unit (pt) is assumed. - - - -Relative length specifiers are represented in XSL with the -proportional-column-width() function. - - - -Here are some examples: - - - - - - -"36pt" becomes "36pt" - - - - -"3pi" becomes "3pc" - - - - -"36" becomes "36pt" - - - - -"3*" becomes "proportional-column-width(3)" - - - - -"3*+2pi" becomes "proportional-column-width(3)+2pc" - - - - -"1*+2" becomes "proportional-column-width(1)+2pt" - - - - -Parameters - - -colwidth - - -The CALS column width specification. - - - - - -Returns - -The XSL column width specification. - - - - -- cgit v1.2.3-54-g00ecf