Graphics, Figures & Tables ⇒ Footnotes for Table or Figure
-
- Posts: 3
- Joined: Mon Feb 13, 2012 6:40 am
Footnotes for Table or Figure
I would like to add some comments or footnote (just below the table/figure) after the table or figure caption (e.g. this table/figure) was drawn using data ... Please help.
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
- NoIdeaNickanme
- Posts: 13
- Joined: Wed Nov 09, 2011 5:41 pm
Footnotes for Table or Figure
Code: Select all
This is caption text.\footnote{Footnote text}
Hope it helps,
a.
- Stefan Kottwitz
- Site Admin
- Posts: 10324
- Joined: Mon Mar 10, 2008 9:44 pm
Footnotes for Table or Figure
footnotes within figure and table environments can be a problem, since they can float over pages, so it's unclear where the footnote text would appear. Possibly it doesn't appear at all.
For notes to tables, threeparttable is a useful package.
Regarding figures or tables, you could use a
minipage
within the figure or table environment. Within this minipage
, you could place additional text or footnotes.Or simply place your notes in the
\caption
command, such asCode: Select all
\caption[short caption for the list of tables]{long caption with extra notes,
could be several lines, for the text}
-
- Posts: 3
- Joined: Mon Feb 13, 2012 6:40 am
Re: Footnotes for Table or Figure
-
- Posts: 3
- Joined: Mon Feb 13, 2012 6:40 am
Re: Footnotes for Table or Figure
In brief, let the additional words be part of the caption (may be enclosed in brackets). Then use the following script:
\caption[shorter caption for lof/lot]{long caption for figure/table}
The shorter version is what you want to appear in the list of figures (lof) or list of tables (lot) while the longer version is the caption plus any additional words that you may wish to add.