DTD

previous next

Document XML :

<?xml version="1.0"?>

<!DOCTYPE bibliography SYSTEM "http://somewhere.net/book.dtd">

<bibliography>
<book>
	<author>
		<firstname>John Maynard</firstname>
		<lastname>Keynes</lastname>
	</author>
	<title>The General Theory of Employment, Interest and Money</title>
	<publisher>Macmillan</publisher>
</book>
</bibliography>

DTD :

<!ELEMENT bibliography (book*)>

<!ELEMENT book (author, title, publisher, year?)>

<!ELEMENT author (firstname, lastname)>

<!ELEMENT title (#PCDATA)>

<!ELEMENT publisher (#PCDATA)>


 
 

XML/DTD    25/2/2003

27/90