JFTavares / BooknandoPageList

This repository contain a plugin for inDesign that insert a page number in every page for export to ePub3, and, a plugin for Sigil that create a listPage in the ePub file exported from inDesign
http://booknando.com.br
GNU General Public License v2.0
4 stars 3 forks source link

Page numbers in TOC entries #1

Open gregoriopellegrino opened 5 years ago

gregoriopellegrino commented 5 years ago

Dear Jose, thanks for your work.

I want you to know that the page numbers remain in the TOC entries.

image

Gregorio

JFTavares commented 2 years ago

Sorry. Maybe I don't understood what you what indicate. Numbers in inDesign TOC have to be removed before export to ePub.

gregoriopellegrino commented 2 years ago

Here you have some test files: test-pagelist-toc.zip

In the toc.xhtml you can see:

<h2>Contents</h2>
    <ol>
        <li><a href="test-pagelist-toc.xhtml#_idParaDest-1">1Chapter 1</a></li>
        <li><a href="test-pagelist-toc.xhtml#_idParaDest-2">3Chapter 2</a></li>
        <li><a href="test-pagelist-toc.xhtml#_idParaDest-3">5Chapter 3</a></li>
    </ol>
</nav>

Same in the toc.ncx:

<navMap>
    <navPoint id="navpoint1" playOrder="1"><navLabel><text>1Chapter 1</text></navLabel><content src="test-pagelist-toc.xhtml#_idParaDest-1" /></navPoint>
    <navPoint id="navpoint2" playOrder="2"><navLabel><text>3Chapter 2</text></navLabel><content src="test-pagelist-toc.xhtml#_idParaDest-2" /></navPoint>
    <navPoint id="navpoint3" playOrder="3"><navLabel><text>5Chapter 3</text></navLabel><content src="test-pagelist-toc.xhtml#_idParaDest-3" /></navPoint>
</navMap>

These numbers before the chapter name remain even after launching the plugin in Sigil. I hope I was able to make my point.

JFTavares commented 2 years ago

I understand now! Il problema è che quando crei il sommario dentro inDesign esso pensa che il numero di pagina appartenga al sommario e lo inserisce insieme. E occorre soltanto a inizio capitolo. Come puoi vedere il numero appare già prima di applicare il plugin di Sigil. Il plugin in Sigil non fa niente com il sommario il nav id="toc", ma soltanto con il nav pagelist.

Le soluzioni sono due:

Non riesco a inserire niente nel plugin che possa modificare questa comportamento automaticamente. Forse potrei vedere se nel plugin di InDesign riesco a fare qualcosa, mas mi sembra difficile perché ha a che vedere com il modo come inDesign esporta il texto in HTML.

Spero averti aiutato.

gregoriopellegrino commented 2 years ago

Ok, I understand