Graphics, Figures & Tables ⇒ footnotes in tables
footnotes in tables
I'm aware of the issue that that footnotes declared in a tabular environment are not displayed at the bottom of the page. I did not find any clear solution for that.
I don't want my footnote right beneath the table so a minipage is not right. I want the footnote counter to be increased automatically so I think \footnotemarks aren't good for me.
So is there any other solution to put \footnote{} inside a table and have the explanation at the bottom of the same page?
Learn LaTeX easily with newest books:
The LaTeX Beginner's Guide: 2nd edition and perfect for students writing a thesis
The LaTeX Cookbook: 2nd edition full of practical examples for mathematics, physics, chemistry, and more
LaTeX Graphics with TikZ: the first book about TikZ for perfect drawings in your LaTeX thesis
- localghost
- Site Moderator
- Posts: 9202
- Joined: Fri Feb 02, 2007 12:06 pm
footnotes in tables
Best regards
Thorsten¹
Board Rules
Avoidable Mistakes
¹ System: TeX Live 2025 (vanilla), TeXworks 0.6.10
Re: footnotes in tables
- localghost
- Site Moderator
- Posts: 9202
- Joined: Fri Feb 02, 2007 12:06 pm
footnotes in tables
Feel corrected. Just try my suggestion.bulbanos wrote:[...] Correct me if I'm wrong.
Board Rules
Avoidable Mistakes
¹ System: TeX Live 2025 (vanilla), TeXworks 0.6.10
footnotes in tables
I have a similar but slightly different problem that is not solved by those suggestions above:
I have a table and inside the table I want to footnote things. I don't want to use minipage because I don't like the look of a footnote directly under the table or caption, I want it at the bottom of the page.
How can I do this?
Code below is NOT acceptable
Code: Select all
\begin{table}
\centering
\begin{minipage}{\textwidth}
\centering
\begin{tabular}{|c|c|}
\hline
Electrode & Potential vs. Standard Ag/AgCl \\
& (\SI{}{V}) \\
\hline
Ag/AgCl Wire & 0.000 \\
Metrohm Double Junction\footnotemark[1] & -0.002 \\
Metrohm (Glass frit \# 1)\footnotemark[2] & +0.008 \\
Metrohm (Glass frit \# 2) & +0.030 \\
Radiometer (Ref 201, Red Rod) \# 1 & -0.010 \\
Radiometer (Ref 201, Red Rod) \# 2 & -0.010 \\
\hline
\end{tabular}
\footnotetext[1]{Metrohm electrode: 6.0726.100}
\footnotetext[2]{Metrohm electrode: Inner; 6.0724.140 + Electrolyte vessel; 6.1225.010}
\end{minipage}
\caption{Relative potentials of specific Ag/AgCl reference electrodes used in this author's laboratory vs. prepared Ag/AgCl wire standard electrode.}
\label{Table:Ag_Cl_Potentiometry}
\end{table}
Re: footnotes in tables
I've been struggling with this for a while, I just can't get my footnotes at the bottom of the page, they always appear either under the table or under the caption both of which I don't want.
Thanks for you time.
Re: footnotes in tables
In addition the package documentation of tabularx says you can use \footnote in tabularx but it doesn't work for me. The footnote does not appear at all.
- localghost
- Site Moderator
- Posts: 9202
- Joined: Fri Feb 02, 2007 12:06 pm
footnotes in tables
From my point of view the caption manual is very clear in that. Consider the following example.Eenzc wrote:PS: I do not understand how to use the \captionof command, the documentation for it is very confusing for a layman like me. [...]
Code: Select all
\documentclass[11pt,a4paper,english]{article}
\usepackage[T1]{fontenc}
\usepackage[latin1]{inputenc}
\usepackage{babel}
\usepackage[includehaedfoot,margin=2cm]{geometry}
\usepackage[font=small,labelfont=bf,tableposition=top]{caption}
\usepackage{lmodern}
\parindent0em
\begin{document}
\begin{center}
\captionof{table}{Relative potentials of specific Ag/AgCl reference electrodes used in this author's laboratory vs. prepared Ag/AgCl wire standard electrode.} \label{Table:Ag_Cl_Potentiometry}
\begin{tabular}{|c|c|} \hline
Electrode & Potential vs. Standard Ag/AgCl \\
& V \\ \hline
Ag/AgCl Wire & 0.000 \\
Metrohm Double Junction\footnotemark[1] & -0.002 \\
Metrohm (Glass frit \# 1)\footnotemark[2] & +0.008 \\
Metrohm (Glass frit \# 2) & +0.030 \\
Radiometer (Ref 201, Red Rod) \# 1 & -0.010 \\
Radiometer (Ref 201, Red Rod) \# 2 & -0.010 \\ \hline
\end{tabular}
\footnotetext[1]{Metrohm electrode: 6.0726.100}
\footnotetext[2]{Metrohm electrode: Inner; 6.0724.140 + Electrolyte vessel; 6.1225.010}
\end{center}
\end{document}
Substantiate this allegation by means of a minimal working example (MWE).Eenzc wrote:[...] In addition the package documentation of tabularx says you can use \footnote in tabularx but it doesn't work for me. The footnote does not appear at all.
Best regards
Thorsten
Board Rules
Avoidable Mistakes
¹ System: TeX Live 2025 (vanilla), TeXworks 0.6.10