GeneralReferences (extended footnotes appearing in bibliography)

LaTeX specific issues not fitting into one of the other forums of this category.
Post Reply
Rob W
Posts: 1
Joined: Mon Nov 03, 2008 10:05 pm

References (extended footnotes appearing in bibliography)

Post by Rob W »

Hi Folks

Have tried a search through forums and don't think this has been asked; apologies if so.

I'm trying to find a way to include what might as well be footnotes in a bibliography; chunks of extra info that don't need to be in the main text, are too long for a standard footnote, and would look better all at the end. Best way I can think of to do this is the misc option in bibtex, and stick it in as a note. Not massively elegant; is there a better way of doing it?

Cheers!

Rob

Recommended reading 2024:

LaTeXguide.org • LaTeX-Cookbook.net • TikZ.org

NEW: TikZ book now 40% off at Amazon.com for a short time.

And: Currently, Packt sells ebooks for $4.99 each if you buy 5 of their over 1000 ebooks. If you choose only a single one, $9.99. How about combining 3 LaTeX books with Python, gnuplot, mathplotlib, Matlab, ChatGPT or other AI books? Epub and PDF. Bundle (3 books, add more for higher discount): https://packt.link/MDH5p

sumpygump
Posts: 6
Joined: Mon Nov 03, 2008 5:19 am

References (extended footnotes appearing in bibliography)

Post by sumpygump »

You could use the package 'endnotes'. http://ctan.org/pkg/endnotes.

Here is an example I whipped up of using endnotes in a bibliography.

Key statements are "\usepackage{endnotes}" in the preamble, use the "\endnote" command to define the note or notes, and at the end is the "\theendnotes" command, which will display all the endnotes.

Code: Select all

\documentclass{article}
\usepackage{endnotes}

\begin{document}
This is a document.

\begin{thebibliography}{9}
\bibitem{les85}Leslie Lamport, 1985. \emph{\LaTeX---A Document
Preparation System---User’s Guide and Reference Manual},
Addision-Wesley, Reading.
\bibitem{don89}Donald E. Knuth, 1989. \emph{Typesetting Concrete
Mathematics}, TUGBoat, 10(1):31-36.\endnote{This is an example endnote about this reference.}
\bibitem{rondon89}Ronald L. Graham, Donald E. Knuth, and Ore
Patashnik, 1989. \emph{Concrete Mathematics: A Foundation for
Computer Science}, Addison-Wesley, Reading.
\end{thebibliography}
\theendnotes

\end{document}
Post Reply