View Single Post
Old 03-04-2010, 08:31 PM   #4
DaleDe
Grand Sorcerer
DaleDe ought to be getting tired of karma fortunes by now.DaleDe ought to be getting tired of karma fortunes by now.DaleDe ought to be getting tired of karma fortunes by now.DaleDe ought to be getting tired of karma fortunes by now.DaleDe ought to be getting tired of karma fortunes by now.DaleDe ought to be getting tired of karma fortunes by now.DaleDe ought to be getting tired of karma fortunes by now.DaleDe ought to be getting tired of karma fortunes by now.DaleDe ought to be getting tired of karma fortunes by now.DaleDe ought to be getting tired of karma fortunes by now.DaleDe ought to be getting tired of karma fortunes by now.
 
DaleDe's Avatar
 
Posts: 11,470
Karma: 13095790
Join Date: Aug 2007
Location: Grass Valley, CA
Device: EB 1150, EZ Reader, Literati, iPad 2 & Air 2, iPhone 7
Quote:
Originally Posted by Lago View Post
because the EBW librarian messes up the formatting, and i cant edit HTML prior to importing it to epub. i like RTF because it allows me to set formatting standards, and search/replace/edit certain features. much easier than epub.

sorry, but i dont know a thing about programming, or HTML, i am barely able to figure out what i have so far, the <a name="TOC"></a> thing i figured out, but how do i tell the reader that this TOC entry goes *here* in a document? if you could post a sample of a working TOC, and the tags that tell it where to link to, id appreciate it.
Ebook Publisher is a different application than EBW Librarian. EBook Publisher is free and allows you to edit the raw html files. eBook Publisher will import RTF or Word. Here is what a html document might look like that has TOC in it.
<html>
<head>
<title>Table of Contents</title>
</head>
<body>
<img src="caraliti.png">
<a name="toc"></a>
<h1 align="center">Table of Contents</h1>
<p><a href="CarAlic.html#_RWTOC-1">Down The Rabbit-Hole</a>
</p>
<p><a href="CarAlic.html#_RWTOC-2">The Pool of Tears</a>
</p>
<p><a href="CarAlic.html#_RWTOC-3">A Caucus-Race and a Long Tale</a>
</p>
<p><a href="CarAlic.html#_RWTOC-4">The Rabbit Sends in a Little Bill</a>
</p>
<p><a href="CarAlic.html#_RWTOC-5">Advice from a Caterpillar</a>
</p>
<p><a href="CarAlic.html#_RWTOC-6">Pig and Pepper</a>
</p>
<p><a href="CarAlic.html#_RWTOC-9">A Mad Tea-Party</a>
</p>
<p><a href="CarAlic.html#_RWTOC-10">The Queen’s Croquet-Ground</a>
</p>
<p><a href="CarAlic.html#_RWTOC-11">The Mock Turtle’s Story</a>
</p>
<p><a href="CarAlic.html#_RWTOC-12">The Lobster Quadrille</a>
</p>
<p><a href="CarAlic.html#_RWTOC-13">Who Stole The Tarts?</a>
</p>
<p><a href="CarAlic.html#_RWTOC-14">Alice’s Evidence</a>
</p>
</body>
</html>

Note it also has a cover image referenced at the beginning.
DaleDe is offline   Reply With Quote