summaryrefslogtreecommitdiffstats
blob: f29952ab2157e55ec5956f978cc95c1f60c03485 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
<?xml version="1.0"?>

<reference xml:id="table-templates"><?dbhtml dir="fo"?>
  
  <info>
    <title>Formatting Object Table Reference</title>
    <releaseinfo role="meta">
      $Id: table.xsl 8814 2010-08-09 21:19:53Z bobstayton $
    </releaseinfo>
  </info>
  <partintro xml:id="partintro">
    <title>Introduction</title>
    
<para>This is technical reference documentation for the FO
      table-processing templates in the DocBook XSL Stylesheets.</para>

    
<para>This is not intended to be user documentation.  It is
      provided for developers writing customization layers for the
      stylesheets.</para>

  </partintro>

<refentry xmlns:xlink="http://www.w3.org/1999/xlink" xml:id="template.calc.column.width">
<refnamediv>
<refname>calc.column.width</refname>
<refpurpose>Calculate an XSL FO table column width specification from a
CALS table column width specification.</refpurpose>
</refnamediv>
<refsynopsisdiv>
<synopsis>&lt;xsl:template name="calc.column.width"&gt;
&lt;xsl:param name="colwidth"&gt;1*&lt;/xsl:param&gt;
  ...
&lt;/xsl:template&gt;</synopsis>
</refsynopsisdiv>
<refsect1><title>Description</title>

<para>CALS expresses table column widths in the following basic
forms:</para>



<itemizedlist>
<listitem>

<para><emphasis>99.99units</emphasis>, a fixed length specifier.</para>

</listitem>
<listitem>

<para><emphasis>99.99</emphasis>, a fixed length specifier without any units.</para>

</listitem>
<listitem>

<para><emphasis>99.99*</emphasis>, a relative length specifier.</para>

</listitem>
<listitem>

<para><emphasis>99.99*+99.99units</emphasis>, a combination of both.</para>

</listitem>
</itemizedlist>



<para>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.</para>



<para>Relative length specifiers are represented in XSL with the
proportional-column-width() function.</para>



<para>Here are some examples:</para>



<itemizedlist>
<listitem>

<para>"36pt" becomes "36pt"</para>

</listitem>
<listitem>

<para>"3pi" becomes "3pc"</para>

</listitem>
<listitem>

<para>"36" becomes "36pt"</para>

</listitem>
<listitem>

<para>"3*" becomes "proportional-column-width(3)"</para>

</listitem>
<listitem>

<para>"3*+2pi" becomes "proportional-column-width(3)+2pc"</para>

</listitem>
<listitem>

<para>"1*+2" becomes "proportional-column-width(1)+2pt"</para>

</listitem>
</itemizedlist>

</refsect1><refsect1><title>Parameters</title>

<variablelist>
<varlistentry><term>colwidth</term>
<listitem>

<para>The CALS column width specification.</para>

</listitem>
</varlistentry>
</variablelist>

</refsect1><refsect1><title>Returns</title>

<para>The XSL column width specification.</para>

</refsect1></refentry>
</reference>