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 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196
|
<?sdop warn_unsupported_characters="no" xref_links="no"?>
<chapter id="CHAPfirst">
<title>The first chapter</title>
<para>
This is text before the first section.
</para>
<section>
<title>A section title</title>
<para>A reference to a chapter above: <xref linkend="CHAPfirst"/>.
A reference to a section below: <xref linkend="SECTsomething"/>.
</para>
</section>
<section id="SECTsomething">
<title>A nother section title</title>
<para>
Text in another section.
</para>
</section>
</chapter>
<chapter>
<title>Another chapter title</title>
<section>
<title>section title</title>
<para>
Here's some text.
</para>
<section id="SUBSECTlabel">
<title>This is a subsection title</title>
<para>
This is the text of the subsection.
</para>
</section>
</section>
<section>
<title>Another toplevel section</title>
<para>
Text for another toplevel section. Let's test some attributes:
&gt;=>
&lt;=<
&#128;=€
&#x80;=€
</para>
</section>
</chapter>
<chapter>
<title>chap title</title>
<para>
some text
<emphasis>emphasized</emphasis>
should be normal
<emphasis role="bold">bold</emphasis>
<literal>literal text</literal>
</para>
<section>
<title>This is a section title</title>
<para>
This is text in the section.
<literal>literal<emphasis role="bold">bold literal</emphasis>
ordinary literal</literal>
</para>
<para>
<emphasis>this is italic<literal> and this is literal italic</literal>
back in normal italic</emphasis> and back in roman.
</para>
<screen>
Here's a screen.
</screen>
<literallayout>
Literal layout, not monospaced.
Second line.
</literallayout>
<literallayout class="monospaced">
Literal layout, monospaced.
Second line.
</literallayout>
<!-- Here is a comment --><para>
A normal para.
</para>
<!-- Here is a comment
that extends over a line break --><para>
Another normal para.
</para>
<para>
The quick brown fox jumps over the lazy dog.
☞
The quick brown fox jumps over the lazy dog.
The quick brown fox jumps over the lazy dog.
The quick brown fox jumps over the lazy dog.
The quick brown fox jumps over the lazy dog.
</para>
<programlisting>
Programlisting <ABC> <emphasis>Italic</emphasis>
<![CDATA[
This is a CDATA section. Markup such as < and > should
be treated literally. Also things like > and so on.
We can talk about <elements> literally.
]]>
Now back in <emphasis>normality</emphasis>.
</programlisting>
<para>
Now we need to test a CDATA section in a normal paragraph.
Within a line <![CDATA[<angled>]]> and now on its own.
<![CDATA[
These lines are CDATA, containing <angles> and &persands.
This is another one.
]]>
</para>
</section>
<sect1><title>Test some of the sectN elements</title>
<para>
Some text.
</para>
<sect2><title>A sect2 subsection</title>
<para>
More text.
</para>
<sect3><title>A sect3 subsection</title>
<para>
Yet more text.
</para>
<informaltable frame="none">
<tgroup cols="4" colsep="0" rowsep="0">
<colspec colwidth="10pt" align="left"/>
<colspec colwidth="80pt" align="left"/>
<colspec colwidth="80pt" align="centre"/>
<colspec colwidth="80pt" align="centre"/>
<tbody>
<row>
<entry></entry>
<entry> <emphasis role="bold">Name</emphasis></entry>
<entry><emphasis role="bold">Code point</emphasis></entry>
<entry><emphasis role="bold">Character</emphasis></entry>
</row>
<row>
<entry></entry>
<entry><literal>&Cacute;</literal></entry>
<entry><literal>U+0106</literal></entry>
<entry>Ć</entry>
</row>
<row>
<entry></entry>
<entry><literal>&Ccaron;</literal></entry>
<entry><literal>U+010C</literal></entry>
<entry>Č</entry>
</row>
<row>
<entry></entry>
<entry><literal>&Ccedil;</literal></entry>
<entry><literal>U+00C7</literal></entry>
<entry>Ç</entry>
</row>
<row>
<entry></entry>
<entry><literal>&Ccirc;</literal></entry>
<entry><literal>U+0108</literal></entry>
<entry>Ĉ</entry>
</row>
<row>
<entry></entry>
<entry><literal>&Cdot;</literal></entry>
<entry><literal>U+010A</literal></entry>
<entry>Ċ</entry>
</row>
</tbody>
</tgroup>
</informaltable>
</sect3>
</sect2>
</sect1>
</chapter>
|