]> source.dussan.org Git - xmlgraphics-fop.git/commitdiff
add some doc for fox:continued-label
authorWilliam Victor Mote <vmote@apache.org>
Mon, 11 Aug 2003 23:37:38 +0000 (23:37 +0000)
committerWilliam Victor Mote <vmote@apache.org>
Mon, 11 Aug 2003 23:37:38 +0000 (23:37 +0000)
git-svn-id: https://svn.apache.org/repos/asf/xmlgraphics/fop/trunk@196784 13f79535-47bb-0310-9956-ffa450edef68

src/documentation/content/xdocs/extensions.xml

index 256fc1424fe04f8475bfbdbd382093bdb428a2dc..4cb52fa305342e10e70d962685aa1c836b58f356 100644 (file)
@@ -67,10 +67,24 @@ PDF document. The fox:destination simply gives that view an independent name.
 fox:destination.</warning>
       </section>
       <section id="table-continue-label">
-        <title>Continued-label (for table-header/-footer)</title>
-        <p>
-Please see examples/fo/basic/contlabel.fo
-        </p>
+        <title>Table Continuation Label</title>
+        <p>Use the fox:continued-label element to create content in table-header and
+table-footer cells that will appear only on pages after the first page that the table
+appears. fox:continued-label is itself inline content, and is a container of fo:inline
+content. This content will be laid out only if the table does not fit on a single page and flows
+to following pages. Here is an example of FO code creating such a table-header:</p>
+<source><![CDATA[<fo:table-header>
+  <fo:table-row>
+    <fo:table-cell>
+      <fo:block>Header column 1 with continued label
+          <fox:continued-label><fo:inline> (cont.)</fo:inline></fox:continued-label>
+      </fo:block>
+    </fo:table-cell>
+    <fo:table-cell>
+      <fo:block>Header column 2 with no continued label</fo:block>
+    </fo:table-cell>
+  </fo:table-row>
+</fo:table-header>]]></source>
       </section>
     </section>
   </body>