23 lines
595 B
XML
23 lines
595 B
XML
<?xml version="1.0" encoding="utf-8"?>
|
|
|
|
<pretext xml:lang="en-US" xmlns:xi="http://www.w3.org/2001/XInclude">
|
|
<!-- we first include a file which contains the docinfo element: -->
|
|
<xi:include href="./docinfo.ptx" />
|
|
|
|
<book xml:id="my-great-book">
|
|
<title>Andy's Book</title>
|
|
<subtitle>An example to get you started</subtitle>
|
|
|
|
<!-- Include frontmatter -->
|
|
<xi:include href="./frontmatter.ptx" />
|
|
|
|
<!-- Include chapters -->
|
|
<xi:include href="./ch-chapter-title.ptx" />
|
|
|
|
|
|
<!-- Include backmatter -->
|
|
<xi:include href="./backmatter.ptx" />
|
|
|
|
</book>
|
|
</pretext>
|