Text FormattingFootnote not showing

Information and discussion about LaTeX's general text formatting features (e.g. bold, italic, enumerations, ...)
Post Reply
kerenkapach
Posts: 4
Joined: Fri Jun 10, 2011 10:25 pm

Footnote not showing

Post by kerenkapach »

Hi all,

I am using TeXniccenter to create a dvi document.
from some reason, using \footnote doesn't work and the footnote doesn't appear at the bottom of the page (although super-script "1" does show on the correct word in the text). when using \footnotetext, the text does appear at the bottom of the page, but without the footnote number.

Any ideas why \footnote doesn't work?


Thanks,
Keren
Last edited by cgnieder on Mon Sep 23, 2013 1:53 pm, edited 1 time in total.

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

localghost
Site Moderator
Posts: 9202
Joined: Fri Feb 02, 2007 12:06 pm

Footnote not showing

Post by localghost »

Footnotes in floats don't work as usual. For more than assumptions and random shots provide a true minimal example.


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

Footnote not showing

Post by Stefan Kottwitz »

Hi Keren,

yes I have some ideas, for example footnotes don't work by default in LaTeX's tables.
It would be good if you would post a minimal working example which shows your problem. You did not tell much details yet, so it's probably not very effective to discuss every possible problem.

Stefan
LaTeX.org admin
firdaus4us
Posts: 1
Joined: Mon Sep 23, 2013 8:16 am

Footnote not showing

Post by firdaus4us »

Use \footnote{}\footnotetext{write the text here}
You can as well use \footnotemark\footnotetext{write the text here}
Any of these two suggestions will solve your problem. Hope this helps
User avatar
cgnieder
Site Moderator
Posts: 2000
Joined: Sat Apr 16, 2011 7:27 pm

Footnote not showing

Post by cgnieder »

firdaus4us wrote:Use \footnote{}\footnotetext{write the text here}
You can as well use \footnotemark\footnotetext{write the text here}
Any of these two suggestions will solve your problem. Hope this helps
Although \footnotetext probably is the right solution (we can't be sure without a Infominimal working example (MWE)) your suggestions may not work if applied naively (depending on where it is used):

Code: Select all

\documentclass{article}

\begin{document}

\begin{table}
  \footnotemark\footnotetext{foo bar}
\end{table}

\end{document}
(That's the reason why Thorsten and Stefan asked for the MWE).

Regards
site moderator & package author
Post Reply