General ⇒ Add a note at the lower part of the page
Add a note at the lower part of the page
I would like to make an asterisk next to a word and explain it further at the lower part of the page (sometime author have a system where they add the references at the lower part of each page). Maybe the best way to explain this is as a margin at the lower part of the page. How do I do this?
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
- Stefan Kottwitz
- Site Admin
- Posts: 10335
- Joined: Mon Mar 10, 2008 9:44 pm
Add a note at the lower part of the page
Add a note at the lower part of the page
Code: Select all
\documentclass{article}
\title{The title}
\author{The author\thanks{Author's affiliation}}
\begin{document}
\maketitle
\end{document}
Re: Add a note at the lower part of the page
- Stefan Kottwitz
- Site Admin
- Posts: 10335
- Joined: Mon Mar 10, 2008 9:44 pm
Add a note at the lower part of the page
yes, that's possible. Try this small example:
Code: Select all
\documentclass{article}
\begin{document}
\renewcommand*\thefootnote{\fnsymbol{footnote}}
word\footnote{explanation}
another word\footnote{another explanation}
\end{document}