Have you ever tried to add a footnote to a table inside the tabular
environment? Even though the index is printed, the search for the actual footnote will be in vain.
One way to overcome this issue is by using longtable. The package handles footnotes really well. But it may be an overkill if your table is small.
Also, I read the tabularx
package also handles footnotes correctly, I haven’t tested it though.
Another, more appropriate solution would be using the minipage environment. Here is an example:
\begin{minipage}{6cm} \begin{tabular}{|l|c|c|} \hline A & 1 & 2 \footnote{This is a footnote.} \\ \hline B & 2 & 1 \\ \hline C & 3 & 3 \\ \hline \end{tabular} \end{minipage}
Obviously, the footnote is placed right below the table, which may or may not be what you want. In addition, since minipage
is not a floating environment, adding a caption inside the minipage
environment gives the following error message: “LaTeX Error: \caption outside float”. If you want to send the footnote to the bottom of the page and replace the index with a number rather than a alphabetic character, you may use the minipage*
-environment of the footnote package:
\documentclass[12pt]{article} \usepackage{footnote} \begin{document} \begin{minipage*}{6cm} \begin{tabular}{|l|c|c|} \hline A & 1 & 2 \footnote{This is a footnote.} \\ \hline B & 2 & 1 \\ \hline C & 3 & 3 \\ \hline \end{tabular} \end{minipage*}
The code above places the footnote where and how we want it, but the issue with the caption remains.
What finally saved my day was having a look at the documentation of the footnote package. It provides the savenotes
environment, which collects all footnotes inside the tabular
where they get stuck and “releases” them at the end. Here is an example:
\documentclass[12pt]{article} \usepackage{footnote} \begin{document} \begin{savenotes} \begin{table}[ht] \centering \begin{tabular}{|l|c|c|} \hline A & 1 & 2 \footnote{This is the first footnote.} \\ \hline B & 2 & 1 \\ \hline C & 3\footnote{This is the second footnote.} & 3 \\ \hline \end{tabular} \caption{A table caption.} \end{table}% \end{savenotes} \end{document}
Update: conflict with xcolor package
There is a conflict between the xcolor
and the footnote
packages. You can fix it by first loading the xcolor
package.
The error you will see is either:
Missing } inserted.
or
Extra }, or forgotten \endgroup
Thanks for this post. Could you also perhaps summarize the ways you can insert footnotes in the longtable environment? I have been trying to get the footnotes to display directly below where the table ends in the longtable environment but have not been very successful. They end up in the “footnote area”. Also footnotes in various parts of the long table, pre-table text, header text, table cell contents all seem to have different formats. It would be awesome if you could post a bit about it.
Hello! Sorry for the late response. After searching for quite some time, I found a package that allows placing footnotes in a longtable right below the table rather than at the bottom of the page. The package is called threeparttablex and is an extension of the threeparttable package. I changed the example from the documentation to make it a fully functional minimal example. Furthermore, I extended the code for automatic enumeration of the footnotes using a counter which is easily changed to roman, alphabetic, or numeric. Also, the counter is automatically reset when creating a new table.
By moving the command
\insertTableNotes
you have the flexibility to place footnotes anywhere you want.Best, Tom.
Thanks mate! I spent countless hours trying to get this working before giving up while I was writing my thesis. Next time around, I know where to look. 🙂
Too bad I didn’t post this earlier. Thanks for your comment :-). Tom.
I like the minipage environment leaving the footnotes below the figure. However, how is it possible to make this a float?
Hey there,
Either you pack everything into a floating environment like
table
which is not very nice. Or you may want to give the threeparttable package a try. Here is an example.The ctable package offers similar functionality.
Best, Tom.
Thank you, Tom, this is exactly what I was desperately trying to do 🙂
Good post… I normally use \footnotemark and \footnotetext to add footnotes in table…
Thanks for your comment, Muhammad. I tried, but couldn’t make it work while writing the post. It was only when you wrote your comment, I search a bit more and figured that one has to place the
\footnotetext
outside thetable
environment. Here is an example for those who are interested:Thanks, Tom.
Hi, I used this example of yours to insert the footnotes in the table but they appeared with the normal section text which is why I put the \footnotetext before \end{table} command and they appeared under the table. But the problem now is that they are centered and not right justified. Do you know how to right justify them?
Hi Bhawuk,
Thanks for your question. Please provide a minimal working example to illustrate your problem.
Best, Tom
I wonder if the footnotes package fixes the other common limitation – no footnotes in figure (or any) captions
Hey John,
Thanks for your question. The footnote package allows placing footnotes in captions. However, in you will need to
protect
them. Otherwise, LaTeX will produce an error message.Cheers, Tom.
Ive been testing this morning, and it seems to break when using hyperref – specifically if using colorlinks=true.
The following does not work
Hi John,
You are right, there is no simple solution for adding hyperlinks to footnote marks within floats. I found a similar question on Stack Exchange. The rather “creative” solution seems to work well, even with
colorlinks=true
.Btw, you can load the
hyperref
package with options, e.g.:Best, Tom.
you make my day.
Thank you
Hi Tom!
Could you give an example on how to write a line type in a figure caption? for example
where the ” ” are examples of the line type
Many thank in advance
Hey Linda,
Easiest would be to just use the math-environement and write out the line, e.g.:
If you are looking for a more consistent way in terms of line length, try the dashrule package:
Best, Tom
Did you have a look at tablefootnote?
Thank you! An interesting and very flexible package. Best, Tom.
Hi there,
many thx for this article. I’m writing my master theses and would like to have a footnote in my table.
None of the above works though, and I really don’t know why. It is something with the other packages I asume, as your reduced example works great. Even with my own table.
Before I try to fix that, maybe someone of you had the same experience and can help. I get a lot of the following errors:
Latex Error: ./chapters/materials.tex:97 Extra }, or forgotten \endgroup.
Latex Error: ./chapters/materials.tex:97 Missing } inserted.
All in the same line. This is the line where my footnote statement is.
Any ideas?
best
Pawel
Hi,
sorry. My fault. I read about hyperref making it all go down the river, but forgot, that I also use that package… Have to look for something else.
BTW: I used threeparttable package. It worked fine, but all footnotes which cause a line break in the footnote of the table cause a very strange behavior: The hole table ends up in the footnote area. Any ideas?
Hi,
everything is fine now. I installed the tablefootnote package. It works, although sometimes a footnote is on the wrong page. But I will deal with that in the end.
best
Pawel
Love !
I found it was better to keep in the table environment for consistency. With threeparttable, my caption would not align as other tables in my document. For simplicity, I used the \vline (in this instance to include borders) and \multicolumn macros to make it happen.
An interesting approach with manual footnotes. Thanks for sharing! Cheers, Tom.
Left out \footnotesize at the relevant text
Latex Footnotes – Tables & Bottom of Page
[…] http://texblog.org/2012/02/03/using-footnote-in-a-table/ […]
i had (apparently) a very, very special case to solve. i wanted to fit a quite wide table in a landscape environment, about centered vertically and horizontally, use footnotes inside the table and xcolor, booktabs and slashbox (now diagbox) for formatting. i tried about every suggestion i could dig up, nothing worked perfectly. the biggest problem most of the time was positioning the table. it seems that most footnote-enhancing packages do some weird stuff related to the page space definitions… or so. other problems include longtable breaking z-order of xcolor/diagbox elements, caption going wild and probably half a dozen other things that i happily obliterated already 🙂
my current solution is to use a minipage as was suggested here, thanks! (of course i have a with a much wider table, so this looks slightly insane as it is, because it is actually enlarged by the resizebox instead of made smaller, but you get the general idea 🙂
maybe it helps someone… my almost minimal but fully working example:
Hi Stefan,
Thanks for sharing your solution/code. Appreciate it! Tom.
note regarding when to load the package footnote:
it seems as if xcolor is not the only package that interferes with footnote since i don’t use this package but got the error about missing braces “{“.
loading footnnote last solved the problem
Thanks for your comment! Best, Tom.
Thanks for posting. it s a nice post full of information.
You may find the ctable package makes everything easier (-> http://www.ctan.org/tex-archive/macros/latex/contrib/ctable)
Thanks for the comment. I agree, the ctable package makes placing table notes below a table easier. Thanks, Tom.
Excellent post! Made my day. 🙂
Matthias
Nice post!
However, your preferred method didn’t work perfectly for me. The footnotes end up on the page where the table environment is called in the latex-code, not where the table is placed in the final document.
I need my table to be within a table environment. So I went for something similar to stefanct, using the same example as in the original post it should be something like this:
If I could, I would have wrapped everything in the table env in a minipage but I got errors for this even though the minipage was inside the table env.
I usually place the caption above the table since this is more common in scientific papers. The \vspace is required since the default table environment in LaTeX is not designed for this layout and leaves no space here by default.
A nice thing with this approach is that the footnote labels change to letters within the minipage so they are intuitively separated from the footnotes in the rest of the document.
Cool, thanks for the nicely formatted code. The only problem I see is the footnotes are aligned left whereas the tabular is centred. One could limit the width of the minipage environment, but that’s not a very elegant fix. Any idea?
I’ve been thinking a bit about this now and can’t come up with a nice way to put footnotes under the table if the table does not span most of the page. I’d say that if there is enough horizontal space over, add an extra comment column rather than using footnotes or put several tables together. It’s not any fancier than manually setting the width of the minipage, just some other options to try out.
Hey Adam,
Thanks for your thoughts on this!
Thanks. This helped me!
Thank you very much, This was very helpful.
thanks a lot, saved me a lot of time 🙂
Thanks for this interesting post, even though I’m also used to define separately the footnotemark and footnotetext in case of a tabular environment (which in fact are the «bricks» upon which the
\footnote{}
command relies. That may be verified by looking at the definition of macro\footnote
:\footnote:
One last detail, there is usually no need to specify a number for
\footnotemark
as it is automatically incremented. Then again by looking at the definition of this command/macro :\footnotemark:
However it is of course necessary for
\footnotetext
as you wrote it.Alex.
Thanks for this insight and clarification. Best, Tom.
Oh maaaan!!! You saved my life! THANKS heaps! 😀
ty, this is what I need.
Tom, thank you so much, I tried different methods in order to solve this issue. Greetings from Mexico!
Thank you so much. Your explanation is very clear.
You saved my life! Thank you