GeneralAdd a note at the lower part of the page

LaTeX specific issues not fitting into one of the other forums of this category.
Post Reply
xetal
Posts: 14
Joined: Fri May 25, 2007 5:18 pm

Add a note at the lower part of the page

Post by xetal »

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?

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

Stefan Kottwitz
Site Admin
Posts: 10335
Joined: Mon Mar 10, 2008 9:44 pm

Add a note at the lower part of the page

Post by Stefan Kottwitz »

Hi xetal,

perhaps do you mean just a footnote with an asterisk as mark?

Stefan
LaTeX.org admin
User avatar
gmedina
Posts: 2313
Joined: Wed Jul 11, 2007 11:45 pm

Add a note at the lower part of the page

Post by gmedina »

As Stefan_K said, you have to be more precise. The \thanks commad could be the answer:

Code: Select all

\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,...
xetal
Posts: 14
Joined: Fri May 25, 2007 5:18 pm

Re: Add a note at the lower part of the page

Post by xetal »

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?
User avatar
Stefan Kottwitz
Site Admin
Posts: 10335
Joined: Mon Mar 10, 2008 9:44 pm

Add a note at the lower part of the page

Post by Stefan Kottwitz »

Hi xetal,

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}
Stefan
LaTeX.org admin
User avatar
gmedina
Posts: 2313
Joined: Wed Jul 11, 2007 11:45 pm

Add a note at the lower part of the page

Post by gmedina »

Take a look at the footmisc pakage.
1,1,2,3,5,8,13,21,34,55,89,144,233,...
xetal
Posts: 14
Joined: Fri May 25, 2007 5:18 pm

Re: Add a note at the lower part of the page

Post by xetal »

Thanks to both of you!
Post Reply