General ⇒ Add a note at the lower part of the page
Add a note at the lower part of the page
Hi!
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?
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.

- Stefan Kottwitz
- Site Admin
- Posts: 10345
- Joined: Mon Mar 10, 2008 9:44 pm
Add a note at the lower part of the page
LaTeX.org admin
Add a note at the lower part of the page
As Stefan_K said, you have to be more precise. The \thanks commad could be the answer:
Code: Select all
Code, edit and compile here:
\documentclass{article}\title{The title}\author{The author\thanks{Author's affiliation}}\begin{document}\maketitle\end{document}
1,1,2,3,5,8,13,21,34,55,89,144,233,...
Re: Add a note at the lower part of the page
Yeah, it was footnote. A follow up question: Using footnote, you only seem to be able to use numbers (not asterisk or other things), is there a way to do this?
- Stefan Kottwitz
- Site Admin
- Posts: 10345
- Joined: Mon Mar 10, 2008 9:44 pm
Add a note at the lower part of the page
Hi xetal,
yes, that's possible. Try this small example:
Stefan
yes, that's possible. Try this small example:
Code: Select all
Code, edit and compile here:
\documentclass{article}\begin{document}\renewcommand*\thefootnote{\fnsymbol{footnote}}word\footnote{explanation}another word\footnote{another explanation}\end{document}
LaTeX.org admin
Add a note at the lower part of the page
Take a look at the footmisc pakage.
1,1,2,3,5,8,13,21,34,55,89,144,233,...
Re: Add a note at the lower part of the page
Thanks to both of you!