问题 I'm working on a XML file and I'm having issues with it. Here's the DTD : <!ELEMENT book (bookinfo,chapter*)> <!ELEMENT chapter (title,section*)> <!ELEMENT title (#PCDATA)> <!ELEMENT bookinfo (title,author,copyright)> <!ELEMENT author (firstname,surname)> <!ELEMENT copyright (year,holder)> <!ENTITY % divers "para|programlisting|itemizedlist|orderedlist"> <!ELEMENT section (title,(%divers;)+)> <!ELEMENT para (#PCDATA)> <!ELEMENT programlisting (#PCDATA)> <!ELEMENT holder (#PCDATA)> <!ELEMENT