> Hello, > > Tiny question: When I try to render a simple Docbook article, made in > XMLSpy, FOP states: Entity 'euml' not defined > > Somewhere in my XML is the text: definiëren > > How can I configure FOP to use these entities? You have to declare the entity before using it. E.g.:
<?xml version='1.0' encoding='ISO-8859-1'?> <!DOCTYPE article PUBLIC '-//OASIS//DTD DocBook XML V4.1.2//EN' 'docbookx.dtd' [ <!ENTITY euml 'your_definition_here'> ]> Regards Gisbert Amm
