1<!DOCTYPE html> 2<html> 3 <head></head> 4 <body> 5 <h3> 6 Footnotes 7 </h3> 8 <div class="toc"> 9 <p> 10 <b>Table of contents</b> 11 </p> 12 <ul> 13 <li> 14 <a href="#footnotes.first">First Section</a> 15 </li> 16 <li> 17 <a href="#footnotes.second">Second Section</a> 18 </li> 19 </ul> 20 </div> 21 <div id="footnotes.first"> 22 <h3> 23 First Section 24 </h3> 25 <div id="footnotes.first"> 26 <p> 27 Some<a id="footnotes.first.f0" href="#footnote-1"><sup class="footnote">[1]</sup></a> 28 normal<a id="footnotes.first.f1" href="#footnote-2"><sup class="footnote">[2]</sup></a> 29 footnotes<a id="footnotes.first.f2" href="#footnote-3"><sup class="footnote">[3]</sup></a>. 30 </p> 31 </div> 32 </div> 33 <div id="footnotes.second"> 34 <h3> 35 Second Section 36 </h3> 37 <div id="footnotes.second"> 38 <p> 39 Some<a id="f1" href="#footnote-4"><sup class="footnote">[4]</sup></a> boostbook<a 40 id="footnote-6" href="#footnote-5"><sup class="footnote">[5]</sup></a> 41 footnotes<a id="footnote-8" href="#footnote-7"><sup class="footnote">[6]</sup></a>. 42 </p> 43 </div> 44 </div> 45 <div class="footnotes"> 46 <br/> 47 <hr/> 48 <div id="footnote-1" class="footnote"> 49 <p> 50 <a href="#footnotes.first.f0"><sup>[1]</sup></a> First footnote 51 </p> 52 </div> 53 <div id="footnote-2" class="footnote"> 54 <p> 55 <a href="#footnotes.first.f1"><sup>[2]</sup></a> Second footnote 56 </p> 57 </div> 58 <div id="footnote-3" class="footnote"> 59 <p> 60 <a href="#footnotes.first.f2"><sup>[3]</sup></a> Third footnote 61 </p> 62 </div> 63 <div id="footnote-4" class="footnote"> 64 <p> 65 <a href="#f1"><sup>[4]</sup></a> Boostbook footnote 66 </p> 67 </div> 68 <div id="footnote-5" class="footnote"> 69 <p> 70 <a href="#footnote-6"><sup>[5]</sup></a> Footnote without id 71 </p> 72 </div> 73 <div id="footnote-7" class="footnote"> 74 <p> 75 <a href="#footnote-8"><sup>[6]</sup></a> Another footnote without an id 76 </p> 77 </div> 78 </div> 79 </body> 80</html> 81