Quote:
Originally Posted by Toxaris
You can have multiple authors in your opf. Use the following in your opf.
Code:
<dc:creator opf:role="aut">author1 & author2 & author2</dc:creator>
|
The proper way is to use separate tags:
Code:
<dc:creator opf:role="aut">author1</dc:creator>
<dc:creator opf:role="aut">author2</dc:creator>
<dc:creator opf:role="aut">author3</dc:creator>
If a given reading system doesn't recognize this and shows only one, that's a bug or a deficient implementation. Do not use degraded coding to work around shortcomings of particular readers, please.