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
|
<?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE book PUBLIC "-//OASIS//DTD DocBook XML V4.2//EN" "http://www.oasis-open.org/docbook/xml/4.2/docbookx.dtd">
<book>
<chapter>
<title>Introduction</title>
<para>
This is a chapter.
This is a chapter.
This is a chapter.
This is a chapter.
This is a chapter.
<indexterm><primary>Indexed</primary></indexterm>
This is a chapter.
This is a chapter.
This is a chapter.
This is a chapter.
This is a chapter.
This is a chapter.
</para>
<para>
References: first [<xref linkend="App1"/>]
second [<xref linkend="App2"/>]
third [<xref linkend="Sect"/>].
</para>
</chapter>
<appendix id="App1">
<title>First appendix</title>
<para>
This is an appendix.
This is an appendix.
This is an appendix.
This is an appendix.
This is an appendix.
<indexterm><primary>Indexed</primary></indexterm>
This is an appendix.
This is an appendix.
This is an appendix.
This is an appendix.
This is an appendix.
This is an appendix.
</para>
<section><title>A section in an appendix.</title>
<para>
This is a section in an appendix.
</para>
</section>
</appendix>
<appendix id="App2">
<title>Second appendix</title>
<para>
This is an appendix.
This is an appendix.
This is an appendix.
This is an appendix.
This is an appendix.
<indexterm><primary>Indexed</primary></indexterm>
This is an appendix.
This is an appendix.
This is an appendix.
This is an appendix.
This is an appendix.
This is an appendix.
</para>
<section id="Sect"><title>A section in an appendix.</title>
<para>
This is a section in an appendix.
</para>
</section>
</appendix>
<colophon><title>Colophon</title>
<para>
This is text in a colophon.
</para>
</colophon>
<colophon><title>Second Colophon</title>
<para>
This is text in a colophon.
</para>
</colophon>
</book>
|