nDTD
n<!ELEMENT antologia (poema+)>
n<!ELEMENT poema
(titulo?,estrofe+)>
n<!ELEMENT titulo (#PCDATA)>
n<!ELEMENT estrofe (linha+)>
n<!ELEMENT linha (#PCDATA)>
n
n
nExemplo de DTD de um livro:
n<!ELEMENT book (author, heading,
chapter+)>
n<!ELEMENT chapter (heading,
(paragraph|figure)*, section*)>
n<!ELEMENT section (heading,
(paragraph|figure)*)>
n<!ELEMENT (author|heading)
(#PCDATA)>
n<!ELEMENT paragraph
((#PCDATA|reference)*)>
n<!ELEMENT reference EMPTY>