In a book, a footnote is presented at the bottom of the page, in a
slightly smaller type.
converting a book to html, pages are bottomless, so we can put the
footnote in a separate link, or create a footnote div class that
floats right.
Links are probably what the author would have used had he been writing
in html, but divs that float right are closer to the spirit of the
original work, and enables the footnote to be seen in context, as was
originally intended.
Html does not have any equivalent of a slightly smaller font - to get
a slightly smaller font we would have to specify the fonts of the main
document and also the font of the footnote class, which is bad.
How have other people solved this problem?
--
slightly smaller type.
converting a book to html, pages are bottomless, so we can put the
footnote in a separate link, or create a footnote div class that
floats right.
Links are probably what the author would have used had he been writing
in html, but divs that float right are closer to the spirit of the
original work, and enables the footnote to be seen in context, as was
originally intended.
Html does not have any equivalent of a slightly smaller font - to get
a slightly smaller font we would have to specify the fonts of the main
document and also the font of the footnote class, which is bad.
How have other people solved this problem?
--
Comment