diff --git a/XmlCross/xmlcross.xml b/XmlCross/xmlcross.xml index f0cdf0121b1f7c1f580a9a0858a044df9001a4fa..107336a024b6b70a13f585c5cf6ef0bec823f163 100644 --- a/XmlCross/xmlcross.xml +++ b/XmlCross/xmlcross.xml @@ -964,6 +964,12 @@ <title>A <xref linkend="glo_MathML"/> equation</title> <informaltable border="1"> + <colgroup width="7%"/> + + <colgroup width="50%"/> + + <colgroup width="43%"/> + <tr> <th>View</th> @@ -1230,6 +1236,79 @@ </figure> </section> + <section xml:id="xmlc_sectioningElements"> + <title>Sectioning elements</title> + + <figure xml:id="xmlc_fig_recursiveSections"> + <title>Recursive sections</title> + + <informaltable border="1"> + <tr> + <td valign="top"><programlisting language="xml"><chapter version="5.1" + xmlns="http://docbook.org/ns/docbook"> + <title>Top</title> + <section> + <title>Level 1</title> + <section> + <title>Level 2</title> + <section> + <title>Level 3</title> + <para>Hello!</para> + </section> + </section> + </section> +</chapter></programlisting></td> + + <td valign="top"><programlisting language="xml"><html> + ... + <body> + <h1>Top</h1> + <h2>Level 1</h2> + <h3>Level 2</h3> + <h4>Level 3</h4> + <p>Hello!</p></body> +</html></programlisting></td> + </tr> + </informaltable> + </figure> + + <figure xml:id="xmlc_fig_fixedSections"> + <title>Non-recursive sections</title> + + <informaltable border="1"> + <tr> + <td valign="top"><programlisting language="xml"><chapter version="5.1" + xmlns="http://docbook.org/ns/docbook"> + <title>Top</title> + <sect1> + <title>Level 1</title> + <sect2> + <title>Level 2</title> + <sect3> + <title>Level 3</title> + <para>Hello!</para> + </sect3> + </sect2> + </sect1> +</chapter></programlisting></td> + + <td valign="top"><programlisting language="xml"><html> + ... + <body> + <h1>Top</h1> + <h2>Level 1</h2> + <h3>Level 2</h3> + <h4>Level 3</h4> + <p>Hello!</p></body> +</html></programlisting></td> + </tr> + </informaltable> + + <para>See <tag class="starttag" xlink:href="http://tdg.docbook.org/tdg/5.1/chapter.html">chapter</tag>, <tag class="starttag" xlink:href="http://tdg.docbook.org/tdg/5.1/section.html">section</tag>, <tag class="starttag" xlink:href="http://tdg.docbook.org/tdg/5.1/sect1.html">sect1</tag>, <tag class="starttag" xlink:href="http://tdg.docbook.org/tdg/5.1/sect2.html">sect2</tag>, <tag class="starttag" xlink:href="http://tdg.docbook.org/tdg/5.1/sect3.html">sect3</tag>, <tag class="starttag" xlink:href="http://tdg.docbook.org/tdg/5.1/sect4.html">sect4</tag>, <tag class="starttag" xlink:href="http://tdg.docbook.org/tdg/5.1/sect5.html">5</tag>, <tag class="starttag" xlink:href="http://tdg.docbook.org/tdg/5.1/sect5.html">sect5</tag>, <tag class="starttag" xlink:href="http://tdg.docbook.org/tdg/5.1/sect6.html">sect6</tag>, <tag class="starttag" xlink:href="http://tdg.docbook.org/tdg/5.1/simplesect.html">simplesect</tag>, <tag class="starttag" + xlink:href="http://tdg.docbook.org/tdg/5.1/refentry.html">refentry</tag>.</para> + </figure> + </section> + <section xml:id="xmlc_sect_topLevelElement"> <title>Top level elements</title>