Quote:
Originally Posted by theducks
Yes
Sigil will not code these for you, But normal links and anchors function in EPUB and some other formats.
Code:
<p>< href="../Text/thepage.xhtml#Illustration_22.xhtml"/>Illustration here</p>
and place the anchor
in the proper place in "thepage.xhtml"
<a id="Illustration_22"></a>
|
whoops...
The "a" is missing in the first line in the code. It should read
Code:
<p><a href="../Text/thepage.xhtml#Illustration_22.xhtml"/>Illustration here</p>
BTW, these generally convert well to MOBI format. Also, since ePub is XHTML based the target anchor needs to identify itself with the ID attribute and not the old NAME attribute.