tbook: User Element View | [DTD Element View] |
[Home] [Elements] [Entities] | [Prev] [Next] |
(#PCDATA|em|visual|ix|idx|indexsee)*
Name | Type | Default Value |
---|---|---|
style | CDATA | None |
class | CDATA | None |
xml:lang | NMTOKEN | None |
id | ID | None |
The following parameter entities contain verbatim: block, preformat, sectbegin
Corresponds to LaTeX's verbatim environment. In this context XML's <![CDATA[...]]> is sometimes useful. Please note that – in contrast to LaTeX – some formatting elements are allowed. So you may print things in bold face, for example.
article, chapter, index, item, letter, p, paragraph, proof, references, section, subparagraph, subsection, subsubsection, theorem
<verbatim> <em>for</em>(<em>int</em> i=0; i<10; i++) { printf("%d\n", i); } </verbatim>
This yields:
for(int i=0; i<10; i++) { printf("%d\n", i); }