File -> New File -> from Template (Titlepage)
Posted: Sat Feb 20, 2010 12:07 pm
hello,
I use the oXygen XML Editor and I want to write a small Book
I proceed as follows:
File -> New File -> from Template -> Docbook 5- Book with XInclude
After Transformation Docbook-File to PDF-File.
I get a PDF-File
First Page ist the titlepage, then the seconde page is a copy from the the first page.
How can I to remove the second page.
Thank you
I use the oXygen XML Editor and I want to write a small Book
I proceed as follows:
File -> New File -> from Template -> Docbook 5- Book with XInclude
Code: Select all
<?xml version="1.0" encoding="UTF-8"?>
<?oxygen RNGSchema="http://www.oasis-open.org/docbook/xml/5.0/rng/docbookxi.rng" type="xml"?>
<book xmlns="http://docbook.org/ns/docbook"
xmlns:xi="http://www.w3.org/2001/XInclude"
xmlns:xlink="http://www.w3.org/1999/xlink" version="5.0">
<info>
<title>Book Template Title</title>
<author>
<orgname>Organization Name</orgname>
<address>
<city>City</city>
<street>Street</street>
<postcode>000000</postcode>
<country>Country</country>
</address>
<email>user@example.com</email>
</author>
</info>
<part>
<title>First Part</title>
<subtitle>Subtitle of First Part</subtitle>
<chapter>
<title>Chapter Title</title>
<subtitle>Subtitle of Chapter</subtitle>
<sect1>
<title>Section1 Title</title>
<subtitle>Subtitle of Section 1</subtitle>
<para>Text</para>
</sect1>
</chapter>
</part>
</book>
I get a PDF-File
First Page ist the titlepage, then the seconde page is a copy from the the first page.
How can I to remove the second page.
Thank you