tbook: DTD Element View | [User Element View] |
[Home] [Elements] [Entities] | [Prev] [Next] |
(frontmatter,mainmatter,backmatter?)
Name | Type | Default Value |
---|---|---|
style | CDATA | None |
class | CDATA | None |
xml:lang | NMTOKEN | "en" |
id | ID | None |
This element embraces all other elements of a book. (Like the <html> tag does in HTML.)
If a class attribute is given, and its contents ends with `.sty', the whole thing is interpreted as a LaTeX style file that's included instead of tbook-pl.sty. However, an explicit style file as an XSLT parameter sty-file still has higher precedence. Same with <article>.
backmatter, frontmatter, mainmatter
<?xml version="1.0" encoding="iso-8859-1"?> <!DOCTYPE book PUBLIC "-//Torsten Bronger//DTD tbook 1.3//EN" "http://tbookdtd.sourceforge.net/tbook13.dtd"> <book xml:lang="en-GB"> <frontmatter> <title>A little book</title> <author>Torsten Bronger</author> </frontmatter> <mainmatter> <chapter> <heading>First Chapter</heading> <p>Small is beautiful.</p> </chapter> </mainmatter> </book>