Register Guidelines E-Books Search Today's Posts Mark Forums Read

Go Back   MobileRead Forums > E-Book Formats > ePub

Notices

Reply
 
Thread Tools Search this Thread
Old 10-04-2012, 03:14 PM   #1
Ti-Ron
Connoisseur
Ti-Ron ought to be getting tired of karma fortunes by now.Ti-Ron ought to be getting tired of karma fortunes by now.Ti-Ron ought to be getting tired of karma fortunes by now.Ti-Ron ought to be getting tired of karma fortunes by now.Ti-Ron ought to be getting tired of karma fortunes by now.Ti-Ron ought to be getting tired of karma fortunes by now.Ti-Ron ought to be getting tired of karma fortunes by now.Ti-Ron ought to be getting tired of karma fortunes by now.Ti-Ron ought to be getting tired of karma fortunes by now.Ti-Ron ought to be getting tired of karma fortunes by now.Ti-Ron ought to be getting tired of karma fortunes by now.
 
Posts: 80
Karma: 1023042
Join Date: Nov 2011
Device: Kobo Touch, iPad
Multiple foot notes with same id

Okay, in a list, I have three foot notes that are linked to the same reference. Juste like that:
Code:
<ul>
    <li>Premier dépistage du varroa deux semaines avant la floraison du pissenlit.<br />
    - Intervention si nécessaire<a href="../Text/footnotes.xhtml#footnote6" id="ref6">[6]</a>.</li>

    <li>Deuxième dépistage du varroa à la fin du mois de juillet.<br />
    - Intervention immédiate si nécessaire<a href="../Text/footnotes.xhtml#footnote6" id="ref6">[6]</a>.</li>

    <li>Troisième dépistage du varroa à la fin du mois d'août (celui-ci est facultatif en ce sens que l'apiculteur aura peut-être déjà pris la décision de traiter ses ruches après le dépistage effectué en août).</li>
  </ul>

  <p class="bold">Fin de la saison</p>

  <ul>
    <li>Administration des traitements de fin de saison contre la varroase, débutant au plus tard à la mi-septembre selon les niveaux d'infestation détectés.</li>

    <li>S'il y a lieu, administration de traitements prescrits pour la loque américaine, l'acariose et la nosémose.</li>

    <li>Dépistage du varroa au début de novembre afin de contrôler l'efficacité des traitements.<br />
    - Une intervention d'appoint sera alors faite au besoin<a href="../Text/footnotes.xhtml#footnote6" id="ref6">[6]</a>.</li>
  </ul>
I want thos three linked to the same not in my footnote page, here:
Code:
<p><a href="../Text/Section0010.xhtml#ref6" id="footnote6">6</a>Se référer au calendrier de contrôle de la varroase (Figure 10).</p>
Is that possible or I have to create a differente note with a different number that are linked to their own note at the end of the book?

Thanks for your help guyz and gals!
Ti-Ron is offline   Reply With Quote
Old 10-04-2012, 03:32 PM   #2
DiapDealer
Grand Sorcerer
DiapDealer ought to be getting tired of karma fortunes by now.DiapDealer ought to be getting tired of karma fortunes by now.DiapDealer ought to be getting tired of karma fortunes by now.DiapDealer ought to be getting tired of karma fortunes by now.DiapDealer ought to be getting tired of karma fortunes by now.DiapDealer ought to be getting tired of karma fortunes by now.DiapDealer ought to be getting tired of karma fortunes by now.DiapDealer ought to be getting tired of karma fortunes by now.DiapDealer ought to be getting tired of karma fortunes by now.DiapDealer ought to be getting tired of karma fortunes by now.DiapDealer ought to be getting tired of karma fortunes by now.
 
DiapDealer's Avatar
 
Posts: 27,546
Karma: 193191846
Join Date: Jan 2010
Device: Nexus 7, Kindle Fire HD
There's no reason why you can't have three separate references in the main text all pointing to the exact same note/entry on your footnotes page. But it's not possible for the entry on your footnotes page to have some sort of "miracle link" that knows which of three possible origins to return to.

And if your three original references in the main text are all part of the same (x)html file, it's not possible to have duplicate IDs if you want your code to validate. An ID must be absolutely unique to that (x)html file.
DiapDealer is offline   Reply With Quote
Advert
Old 10-04-2012, 07:27 PM   #3
Tex2002ans
Wizard
Tex2002ans ought to be getting tired of karma fortunes by now.Tex2002ans ought to be getting tired of karma fortunes by now.Tex2002ans ought to be getting tired of karma fortunes by now.Tex2002ans ought to be getting tired of karma fortunes by now.Tex2002ans ought to be getting tired of karma fortunes by now.Tex2002ans ought to be getting tired of karma fortunes by now.Tex2002ans ought to be getting tired of karma fortunes by now.Tex2002ans ought to be getting tired of karma fortunes by now.Tex2002ans ought to be getting tired of karma fortunes by now.Tex2002ans ought to be getting tired of karma fortunes by now.Tex2002ans ought to be getting tired of karma fortunes by now.
 
Posts: 2,297
Karma: 12126329
Join Date: Jul 2012
Device: Kobo Forma, Nook
What I personally do in this case is add ".1", ".2", ".3" to the ids.

You could also keep the first as "ref6", while the next starts with ".2", ".3", etc. This way you do not have to mess with the footnote pointers at all.

Code:
<ul>
    <li>Premier dépistage du varroa deux semaines avant la floraison du pissenlit.<br />
    - Intervention si nécessaire<a href="../Text/footnotes.xhtml#footnote6" id="ref6.1">[6]</a>.</li>

    <li>Deuxième dépistage du varroa à la fin du mois de juillet.<br />
    - Intervention immédiate si nécessaire<a href="../Text/footnotes.xhtml#footnote6" id="ref6.2">[6]</a>.</li>

    <li>Troisième dépistage du varroa à la fin du mois d'août (celui-ci est facultatif en ce sens que l'apiculteur aura peut-être déjà pris la décision de traiter ses ruches après le dépistage effectué en août).</li>
  </ul>

  <p class="bold">Fin de la saison</p>

  <ul>
    <li>Administration des traitements de fin de saison contre la varroase, débutant au plus tard à la mi-septembre selon les niveaux d'infestation détectés.</li>

    <li>S'il y a lieu, administration de traitements prescrits pour la loque américaine, l'acariose et la nosémose.</li>

    <li>Dépistage du varroa au début de novembre afin de contrôler l'efficacité des traitements.<br />
    - Une intervention d'appoint sera alors faite au besoin<a href="../Text/footnotes.xhtml#footnote6" id="ref6.3">[6]</a>.</li>
  </ul>
Then you just have to make sure Footnote 6 in "footnotes.xhtml" points back to the first.
Tex2002ans is offline   Reply With Quote
Reply

Thread Tools Search this Thread
Search this Thread:

Advanced Search

Forum Jump

Similar Threads
Thread Thread Starter Forum Replies Last Post
Using Calibre to allow for shared highlights/notes on multiple devices? iseroma Calibre 0 06-30-2012 02:31 PM
Foot Note Format yoss15 Sigil 30 03-14-2012 03:47 PM
One Foot In The Grave - William Mark Simmons Flashingblade Reading Recommendations 2 06-01-2009 12:32 PM
Multiple Links and Notes in BD: Decide Your Own Stinking Fate Adventure Stories vivaldirules Lounge 9 04-09-2008 08:46 PM


All times are GMT -4. The time now is 07:54 PM.


MobileRead.com is a privately owned, operated and funded community.