Q1. There's a preset number and type of semantics available. Can I only use each 'type' one time? I tried adding manually more type="text" for chapters 2 and 3, but only the first showed up.
Q2. Does it make any difference if the 'true' semantic type is different from what I called it? Doesn't seem to since I [Set Semantics] Epigraph to abouttheauthor.html and manually edited the title so that my title="About The Author" will be selectable on my Kindle.
Q3. On the [Set Semantics] dialog, it would be handy if there were a button to remove a setting, and a field to allow the user to add their own title (like 'Begin Reading'). Easy enough to do manually, but sometimes I forget and they sort of go together.
Q3.5 -- If I Insert an Inline TOC and the book has been [Arrange into Folders], toc.xhtml is created in the root. If I run [Arrange into Folders] again, then toc.xhtml is put under /text, just like any other html files I add. Just slightly inconsistent is all, but maybe it should go under /text?
Q4. I tried to use the 'other' in the spec, but it didn't seem to make any difference. Did I do it correctly?
http://www.idpf.org/epub/20/spec/OPF...htm#Section2.6
Quote:
The required type attribute describes the publication component referenced by the href attribute. The values for the type attributes must be selected from the list defined below when applicable. Other types may be used when none of the predefined types are applicable; their names must begin with the string other.. The value for the type attribute is case-sensitive.
|
Code:
<guide>
<reference href="text/cover.xhtml" title="Cover" type="cover"/>
<reference href="text/titlepage.xhtml" title="Title Page" type="title-page"/>
<reference href="text/toc.xhtml" title="Table of Contents" type="toc"/>
<reference href="text/forward.xhtml" title="Foreword" type="foreword"/>
<reference href="text/chap_01.xhtml" title="Begin Reading" type="text"/>
<reference href="text/chap_02.xhtml" title="Another Chapter2" type="otherChap2"/>
<reference href="text/chap_03.xhtml" title="Another Chapter3" type="otherChap3"/>
<reference href="text/acknowledgements.xhtml" title="Acknowledgements" type="acknowledgements"/>
<reference href="text/aboutauthor.xhtml" title="About The Author" type="epigraph"/>
</guide>