-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathchapter.docbook.part.xml
855 lines (788 loc) · 19.5 KB
/
chapter.docbook.part.xml
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
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
<?xml version="1.0" encoding="UTF-8"?>
<chapter id="part-chapter-section">
<title>Part 部分 / Chapter 章 / Section 节</title>
<section id="title">
<title>title 标题</title>
<programlisting>
<![CDATA[
<part>
<title>Part I</title>
<chapter>
<title>Chapter 1</title>
<section>
<title>Section 1</title>
</section>
</chapter>
</part>
]]>
</programlisting>
<section>
<title>subtitle</title>
<programlisting>
<![CDATA[
<part>
<title>Part I</title>
<subtitle>Part I subtitle</subtitle>
<chapter>
<title>Chapter 1</title>
<subtitle>Chapter 1 subtitle</subtitle>
<section>
<title>Section 1</title>
<subtitle>Section 1 subtitle</subtitle>
</section>
</chapter>
</part>
]]>
</programlisting>
</section>
<section>
<title>titleabbrev</title>
<programlisting>
<![CDATA[
<part>
<title>Part I</title>
<subtitle>Part I subtitle</subtitle>
<titleabbrev>Part I titleabbrev</titleabbrev>
<chapter>
<title>Chapter 1</title>
<subtitle>Chapter 1 subtitle</subtitle>
<titleabbrev>Chapter I titleabbrev</titleabbrev>
<section>
<title>Section 1</title>
<subtitle>Section 1 subtitle</subtitle>
<titleabbrev>Section I titleabbrev</titleabbrev>
</section>
</chapter>
</part>
]]>
</programlisting>
</section>
</section>
<section id="part">
<title>part 部</title>
<programlisting>
<![CDATA[
<part>
<title>Part</title>
<partintro>
<para></para>
</partintro>
</part>
]]>
</programlisting>
<programlisting>
<![CDATA[
<?xml version="1.0" encoding="UTF-8"?>
<book version="5.0" xmlns="http://docbook.org/ns/docbook"
xmlns:xlink="http://www.w3.org/1999/xlink"
xmlns:xi="http://www.w3.org/2001/XInclude">
<info>
<title>The Gallio Book</title>
<authorgroup>
<author><personname>The Gallio Documentation Team</personname></author>
</authorgroup>
<copyright>
<year>2009</year>
<holder>Gallio Project</holder>
</copyright>
<address>http://www.gallio.org/</address>
<xi:include href="ReleaseInfo.docbook"/>
</info>
<xi:include href="Preface.docbook" />
<part label="I" xml:id="part_Using">
<title>Using MbUnit and Gallio</title>
<xi:include href="Installation/Installation.docbook" />
</part>
<part label="II" xml:id="part_Developing">
<title>Developing MbUnit and Gallio</title>
<xi:include href="GallioDevelopmentBasics/GallioDevelopmentBasics.docbook" />
</part>
<part label="III" xml:id="appendices">
<title>Appendices</title>
<xi:include href="Appendices/MigrationGuide.docbook" />
</part>
</book>
]]>
</programlisting>
<para>partintro</para>
<programlisting>
<![CDATA[
<!DOCTYPE part PUBLIC "-//OASIS//DTD DocBook XML V4.1.2//EN"
"http://www.oasis-open.org/docbook/xml/4.1.2/docbookx.dtd">
<part label="II">
<title>Programming with the Java API</title>
<partintro>
<para>
The sections in Part II present real-world examples of
programming with Java. You can study and learn from the
examples, and you can adapt them for use in your own programs.
</para>
<para>
The example code in these chapters is available for downloading.
See <systemitem role="url">http://www.ora.com/catalog/books/javanut</systemitem>.
</para>
<literallayout>
<xref linkend="jnut-ch-04"/>
<xref linkend="jnut-ch-05"/>
<xref linkend="jnut-ch-06"/>
<xref linkend="jnut-ch-07"/>
<xref linkend="jnut-ch-08"/>
<xref linkend="jnut-ch-09"/>
</literallayout>
</partintro>
<chapter id="jnut-ch-04"><title/><para>...</para></chapter>
<chapter id="jnut-ch-05"><title/><para>...</para></chapter>
<chapter id="jnut-ch-06"><title/><para>...</para></chapter>
<chapter id="jnut-ch-07"><title/><para>...</para></chapter>
<chapter id="jnut-ch-08"><title/><para>...</para></chapter>
<chapter id="jnut-ch-09"><title/><para>...</para></chapter>
]]>
</programlisting>
</section>
<section id="chapter">
<title>chapter 章</title>
<programlisting>
<![CDATA[
<part>
<title>Part</title>
<chapter>
<title>Chapter</title>
</chapter>
<chapter>
<title>Chapter</title>
</chapter>
</part>
]]>
</programlisting>
<section>
<title>chapterinfo</title>
<programlisting>
<![CDATA[
<chapterinfo>
<abstract>
<para>Kickstart 无人值守安装</para>
</abstract>
<keywordset>
<keyword>ISO</keyword>
<keyword>kickstart</keyword>
<keyword>ks</keyword>
</keywordset>
</chapterinfo>
<chapterinfo>
<authorgroup>
<author>
<firstname>Tom</firstname>
<surname>Rhodes</surname>
<contrib>Written by </contrib>
</author>
</authorgroup>
</chapterinfo>
<chapterinfo>
<keywordset>
<keyword>images</keyword>
<keyword>illustrations</keyword>
</keywordset>
<itermset>
<indexterm zone="figures"><primary>Figures</primary></indexterm>
<indexterm zone="figures"><primary>Pictures</primary></indexterm>
<indexterm zone="notreal">
<primary>Sections</primary><secondary>Not Real</secondary>
</indexterm>
</itermset>
</chapterinfo>
]]>
</programlisting>
</section>
</section>
<section id="section">
<title>section 节</title>
<programlisting>
<![CDATA[
<part>
<title>Part I</title>
<chapter>
<title>Chapter 1</title>
<section>
<title>Section 1</title>
</section>
</chapter>
</part>
]]>
</programlisting>
<section id="simplesect">
<title>simplesect</title>
<para>simplesect 下面不能再有 section/sect1..3/simplesect</para>
<programlisting>
<![CDATA[
<article xmlns='http://docbook.org/ns/docbook'>
<title>Example simplesect</title>
<section>
<title>Additional Coding</title>
<para>Support for the additional features requested will be provided. </para>
<simplesect>
<title>Estimated Time</title>
<para>2 to 3 weeks.</para>
</simplesect>
</section>
</article>
]]>
</programlisting>
<simplesect>
<title>Estimated Time</title>
<para>2 to 3 weeks.</para>
</simplesect>
</section>
<section id="bridgehead">
<title>bridgehead</title>
<programlisting>
<![CDATA[
<bridgehead renderas="sect3">Topic Heading</bridgehead>
<para>You can use the Bridgehead element to create a heading
between paragraphs, without creating a new section or
sub-section.</para>
]]>
</programlisting>
<bridgehead renderas="sect3">Topic Heading</bridgehead>
<para>You can use the Bridgehead element to create a heading
between paragraphs, without creating a new section or
sub-section.
</para>
</section>
<section id="sidebar">
<title>sidebar</title>
<screen>
<![CDATA[
<sidebar>
<title>A Sidebar</title>
<para>
Sidebar content.
</para>
</sidebar>
]]>
</screen>
<sidebar>
<title>A Sidebar</title>
<para>
Sidebar content.
</para>
</sidebar>
</section>
</section>
&chapter.docbook.paragraphs.xml;
</chapter>
&chapter.docbook.list.xml;
<chapter id="table">
<title>Table 表格</title>
<programlisting>
<![CDATA[
<table>
<title>表格标题</title>
<tgroup cols="2">
<thead>
<row>
<entry>列标题1</entry>
<entry>列标题2</entry>
</row>
</thead>
<tbody>
<row>
<entry>列内容1</entry>
<entry>列内容2</entry>
</row>
...
</tbody>
</tgroup>
</table>
]]>
</programlisting>
<table>
<title>表格标题</title>
<tgroup cols="2">
<thead>
<row>
<entry>列标题1</entry>
<entry>列标题2</entry>
</row>
</thead>
<tbody>
<row>
<entry>列内容1</entry>
<entry>列内容2</entry>
</row>
...
</tbody>
</tgroup>
</table>
<section id="informaltable">
<title>informaltable</title>
<literallayout>
<![CDATA[
<article xmlns='http://docbook.org/ns/docbook'>
<title>Example footnoteref</title>
<informaltable>
<tgroup cols='2'>
<tbody>
<row>
<entry>foo<footnote xml:id='fnrex1a'><para>A meaningless word</para></footnote></entry>
<entry>3<footnote xml:id='fnrex1b'><para>A meaningless number</para></footnote></entry>
</row>
<row>
<entry>bar<footnoteref linkend='fnrex1a'/></entry>
<entry>5<footnoteref linkend='fnrex1b'/></entry>
</row>
</tbody>
</tgroup>
</informaltable>
</article>
]]>
</literallayout>
<informaltable>
<tgroup cols='2'>
<tbody>
<row>
<entry>
foo
<footnote xml:id='fnrex1a'>
<para>A meaningless word</para>
</footnote>
</entry>
<entry>
3
<footnote xml:id='fnrex1b'>
<para>A meaningless number</para>
</footnote>
</entry>
</row>
<row>
<entry>
bar
<footnoteref linkend='fnrex1a' />
</entry>
<entry>
5
<footnoteref linkend='fnrex1b' />
</entry>
</row>
</tbody>
</tgroup>
</informaltable>
</section>
</chapter>
§ion.docbook.mediaobject.xml;
&chapter.docbook.admonition.xml;
<chapter id="terminal">
<title>Computer terminal</title>
<section id="literallayout">
<title>literallayout</title>
<programlisting role="xml">
<![CDATA[
<literallayout>
1
2
3
</literallayout>
]]>
</programlisting>
</section>
<section id="programlisting">
<title>programlisting</title>
<programlisting role="xml">
<![CDATA[
<programlisting role="c">
#include <stdio.h>
int
main(void)
{
printf("hello, world\n");
}
</programlisting>
<programlisting language="java">
</programlisting>
<programlisting linenumbering="numbered" startinglinenumber="12">
</programlisting>
<programlisting linenumbering="numbered" >
<?dbhtml linenumbering.everyNth="2" linenumbering.separator=" >" linenumbering.width="2" ?>
<?dbfo linenumbering.everyNth="2" linenumbering.separator=" >" linenumbering.width="2" ?>
<textobject><textdata fileref="mycode.c" /></textobject>
</programlisting>
<example><title>My program listing</title>
<programlisting><textobject><textdata
fileref="mycode.c" /></textobject></programlisting>
</example>
Using XInclude for text inclusions
<example><title>My program listing</title>
<programlisting><xi:include href="mycode.c" parse="text"
xmlns:xi="http://www.w3.org/2001/XInclude"/></programlisting>
</example>
]]>
</programlisting>
<programlisting>
<![CDATA[
<programlisting linenumbering="numbered" startinglinenumber="12">
<![CDATA[
#include <stdio.h>
int main(void)
{
printf("Hello, world!\n");
return 0;
}
]] >
</programlisting>
<programlisting linenumbering="numbered" >
<?dbhtml linenumbering.everyNth="2" linenumbering.separator=" >" linenumbering.width="2"?>
<?dbfo linenumbering.everyNth="2" linenumbering.separator=" >" linenumbering.width="2"?>
<textobject><textdata fileref="mycode.c" /></textobject>
</programlisting>
]]>
</programlisting>
<programlisting language="php" linenumbering="numbered" startinglinenumber="12">
<![CDATA[
<?php
class foo
{
private $bar;
public function __construct($bar)
{
$this->bar = $bar;
}
/**
* getFoo
*
* Returns bar if $this->bar is foo else foo .. Oo ;D
*
* @return string
*/
public function getFoo()
{
if($this->bar == 'foo')
{
return 'bar';
}
else
{
return 'foo';
}
}
}
]]>
</programlisting>
<section id="calloutlist">
<title>Callouts</title>
<programlisting>
<![CDATA[
<screen>
bash@host:~/cvs/newbiedoc$ ls -l
total 48
<co id="perm">drwxr-sr-x 2 jesse jesse 4096 May 4 16:26 CVS<co id="cvs">
drwxr-sr-x 3 jesse jesse 4096 Mar 29 03:29 dev
drwxr-sr-x 3 jesse jesse 4096 Apr 8 19:31 general
drwxr-sr-x 3 jesse jesse 4096 Apr 9 00:15 images
</screen>
<calloutlist>
<callout arearefs="cvs">
<para>
This is the CVS directory. CVS files are stored here.
</para>
</callout>
<callout arearefs="perm">
<para>
These are the permissions for the CVS directory.
</para>
</callout>
</calloutlist>
]]>
</programlisting>
</section>
</section>
<section id="userinput">
<title>userinput</title>
<para>ls -l $KDEDIR</para>
<programlisting>
<![CDATA[
<userinput><command>ls</command>
<option>-l</option>
<parameter>$<envar>KDEDIR<envar></parameter>
</userinput>
]]>
</programlisting>
<para>export $KDEDIR=/usr/local/kde</para>
<programlisting>
<![CDATA[
<userinput>
<command>export</command>
<parameter>$<envar>KDEDIR</envar>=<filename>
/usr/local/kde</filename></parameter></userinput>
]]>
</programlisting>
</section>
<section id="keyboard">
<title>Keyboard Input</title>
<programlisting>
<![CDATA[
<keycombo>
<keycap>Ctrl</keycap>
<keycap>Alt</keycap>
<keycap>F1</keycap>
</keycombo>
]]>
</programlisting>
<programlisting>
<![CDATA[
<menuchoice>
<shortcut>
<keycombo><keycap>Ctrl</keycap><keycap>q</keycap></keycombo>
</shortcut>
<guimenuitem> Quit</guimenuitem>
</menuchoice>
]]>
</programlisting>
</section>
<section id="filename">
<title>filename</title>
<filename>office.exe</filename>
</section>
</chapter>
<chapter id="references">
<title>Cross references (参见项)</title>
<section id="link">
<title>link 内部链接</title>
<programlisting>
<![CDATA[
<link linkend="table">Table</link>
<link linkend="article-My-Article-sec"><quote>sec</quote></link>
<link linkend="font"><quote>font</quote></link>
]]>
</programlisting>
<programlisting>
<![CDATA[
<!DOCTYPE sect1 PUBLIC "-//OASIS//DTD DocBook XML V4.1.2//EN"
"http://www.oasis-open.org/docbook/xml/4.1.2/docbookx.dtd">
<sect1>
<title>Examples of <sgmltag>Link</sgmltag></title>
<para>
In this sentence <link linkend='nextsect'>this</link> word is
hot and points to the following section.
</para>
<para>
There is also a link to the section called
<quote><link linkend='nextsect' endterm="nextsect.title"/></quote>
in this sentence.
</para>
<sect2 id='nextsect'>
<title id='nextsect.title'>A Subsection</title>
<para>
This section only exists to be the target of a couple of links.
</para>
</sect2>
</sect1>
]]>
</programlisting>
</section>
<section id="ulink">
<title>ulink 外部链接</title>
<programlisting>
<![CDATA[
<ulink url="http://netkiller.hikz.com">homepage</ulink>
]]>
</programlisting>
</section>
<section id="xref">
<title>xreflabel / xref</title>
<programlisting>
<![CDATA[
<para id="ChooseSCSIid" xreflabel="choosing a SCSI id">The methods
for choosing a <acronym>SCSI</acronym> id are ...
</para>
...
<para>
See the paragraph on <xref linkend="ChooseSCSIid"/>.
</para>
]]>
</programlisting>
<programlisting>
<![CDATA[
<para id="ChooseSCSIid" >The methods
for <phrase id="SCSIxref">choosing a <acronym>SCSI</acronym> id</phrase>
are ...
</para>
...
<para>
See the paragraph on <xref linkend="ChooseSCSIid" endterm="SCSIxref"/>.
</para>
]]>
</programlisting>
<para></para>
<programlisting>
<![CDATA[
<!DOCTYPE book PUBLIC "-//OASIS//DTD DocBook XML V4.1.2//EN"
"http://www.oasis-open.org/docbook/xml/4.1.2/docbookx.dtd">
<book>
<title>An Example Book</title>
<chapter id="ch01">
<title>XRef Samples</title>
<para>This paragraph demonstrates several features of<sgmltag>XRef</sgmltag>.</para>
<itemizedlist>
<listitem><para>A straight link generates the cross-reference text: <xref linkend="ch02"/>.</para></listitem>
<listitem><para>A link to an element with an <sgmltag class="attribute">XRefLabel</sgmltag>:<xref linkend="ch03"/>.</para></listitem>
<listitem><para>A link with an<sgmltag class="attribute">EndTerm</sgmltag>:<xref linkend="ch04" endterm="ch04short"/>.</para></listitem>
</itemizedlist>
</chapter>
<chapter id="ch02">
<title>The Second Chapter</title>
<para>Some content here</para>
</chapter>
<chapter id="ch03" xreflabel="Chapter the Third">
<title>The Third Chapter</title>
<para>Some content here</para>
</chapter>
<chapter id="ch04">
<title>The Fourth Chapter</title>
<titleabbrev id="ch04short">Chapter 4</titleabbrev>
<para>Some content here</para>
</chapter>
</book>
]]>
</programlisting>
</section>
<section id="footnote">
<title>footnote 脚注</title>
<programlisting>
<![CDATA[
<article xmlns='http://docbook.org/ns/docbook'>
<title>Example footnote</title>
<para>An annual percentage rate (<abbrev>APR</abbrev>) of 13.9%<footnote>
5 <para>The prime rate, as published in the <citetitle>Wall Street
Journal</citetitle> on the first business day of the month,
plus 7.0%.
</para>
</footnote>
10 will be charged on all balances carried forward.
</para>
</article>
]]>
</programlisting>
<screen>
<![CDATA[
<para>During the installation of the product<footnote><para>In versions 2.3 and 2.4.</para> </footnote> you may see messages such as these. </para>
<para>
An annual percentage rate (
<abbrev>APR</abbrev>
) of 13.9%
<footnote>
<para>
The prime rate, as published in the
<citetitle>Wall Street
Journal
</citetitle>
on the first business day of the month,
plus 7.0%.
</para>
</footnote>
will be charged on all balances carried forward.
</para>
]]>
</screen>
<para>
During the installation of the product
<footnote>
<para>In versions 2.3 and 2.4.</para>
</footnote>
you may see messages such as these.
</para>
<para>
An annual percentage rate (
<abbrev>APR</abbrev>
) of 13.9%
<footnote>
<para>
The prime rate, as published in the
<citetitle>Wall Street
Journal
</citetitle>
on the first business day of the month,
plus 7.0%.
</para>
</footnote>
will be charged on all balances carried forward.
</para>
</section>
<section id="lot">
<title>lot — A list of the titles of formal objects (as tables or figures) in a document</title>
<screen>
<![CDATA[
<lot>
<title>List of Figures</title>
<lotentry pagenum='5'>The Letters inside their boxes</lotentry>
<lotentry pagenum='15'>Example figure produced by both TeX and troff</lotentry>
<!-- ... -->
</lot>
]]>
</screen>
<lot>
<title>List of Figures</title>
<lotentry pagenum='5'>The Letters inside their boxes</lotentry>
<lotentry pagenum='15'>Example figure produced by both TeX and troff</lotentry>
</lot>
</section>
</chapter>
<chapter id="equation">
<title>equation 公式</title>
<programlisting>
<![CDATA[
<equation>
<title>Fermat's Last Theorem</title>
<alt>x^n + y^n ≠ z^n ∀ n ≠ 2</alt>
<mathphrase>
x<superscript>n</superscript>+y<superscript>n</superscript>≠z<superscript>n</superscript>
∀ n ≠ 2
</mathphrase>
</equation>
<informalequation>
<alt>e^(pi*i) + 1 = 0</alt>
<mediaobject>
<imageobject condition="print"><imagedata fileref="figs/print/db5d_refeqn02.pdf"/></imageobject>
<imageobject condition="web"><imagedata fileref="figs/web/db5d_refeqn02.png"/></imageobject>
</mediaobject>
</informalequation>
]]>
</programlisting>
<equation>
<title>Fermat's Last Theorem</title>
<alt>x^n + y^n ≠ z^n ∀ n ≠ 2</alt>
<mathphrase>
x
<superscript>n</superscript>
+y
<superscript>n</superscript>
≠z
<superscript>n</superscript>
∀ n ≠ 2
</mathphrase>
</equation>
<informalequation>
<alt>e^(pi*i) + 1 = 0</alt>
<mediaobject>
<imageobject condition="print">
<imagedata fileref="figs/print/db5d_refeqn02.pdf" />
</imageobject>
<imageobject condition="web">
<imagedata fileref="figs/web/db5d_refeqn02.png" />
</imageobject>
</mediaobject>
</informalequation>
<section>
<title>引用latex公式</title>
<programlisting>
<![CDATA[
<para>
A presentation system using TeX as a back end might allow you to insert inline markup, such as <markup role="tex">$x^2$</markup>, using TeX syntax directly.
</para>
]]>
</programlisting>
<para>
A presentation system using TeX as a back end might allow you to insert inline markup, such as
<markup role="tex">$x^2$</markup>
, using TeX syntax directly.
</para>
</section>
</chapter>