Note that there are some explanatory texts on larger screens.

plurals
  1. PO
    primarykey
    data
    text
    <p>This is a classic difficulty in LaTeX.</p> <p>The problem is how to do layout with floats (figures and tables, an similar objects) and footnotes. In particular, it is hard to pick a place for a float with certainty that making room for the associated footnotes won't cause trouble. So the standard <code>tabular</code> and <code>figure</code> environments don't even try.</p> <p>What can you do:</p> <ol> <li><strong>Fake it.</strong> Just put a hardcoded vertical skip at the bottom of the caption and then write the footnote yourself (use <code>\footnotesize</code> for the size). You also have to manage the symbols or number yourself with <code>\footnotemark</code>. Simple, but not very attractive, and the footnote does not appear at the bottom of the page.</li> <li>Use the <code>tabularx</code>, <code>longtable</code>, <a href="http://www.ctan.org/tex-archive/macros/latex/contrib/threeparttable/" rel="noreferrer"><code>threeparttable[x]</code></a> (kudos to <a href="https://stackoverflow.com/questions/2888817/footnotes-for-tables-in-latex/2890759#2890759">Joseph</a>) or <a href="http://www.ctan.org/tex-archive/macros/latex/contrib/ctable/" rel="noreferrer"><code>ctable</code></a> which support this behavior.</li> <li><a href="https://stackoverflow.com/questions/2888817/footnotes-for-tables-in-latex/2888869#2888869">Manage it by hand.</a> Use <code>[h!]</code> (or <code>[H]</code> with the float package) to control where the float will appear, and <code>\footnotetext</code> on the same page to put the footnote where you want it. Again, use <code>\footnotemark</code> to install the symbol. Fragile and requires hand-tooling every instance.</li> <li>The <code>footnotes</code> package provides the <code>savenote</code> environment, which can be used to do this.</li> <li>Minipage it (code <a href="http://www.tex.ac.uk/cgi-bin/texfaq2html?label=ftncapt" rel="noreferrer">stolen outright</a>, and read the discalimer about long caption texts in that case): </li> </ol> <pre> \begin{figure} \begin{minipage}{\textwidth} ... \caption[Caption for LOF]% {Real caption\footnote{blah}} \end{minipage} \end{figure} </pre> <p>Additional reference: <a href="http://www.tex.ac.uk/cgi-bin/texfaq2html?label=footintab" rel="noreferrer">http://www.tex.ac.uk/cgi-bin/texfaq2html?label=footintab</a>.</p>
    singulars
    1. This table or related slice is empty.
    plurals
    1. This table or related slice is empty.
    1. This table or related slice is empty.
    1. This table or related slice is empty.
    1. This table or related slice is empty.
    1. VO
      singulars
      1. This table or related slice is empty.
    2. VO
      singulars
      1. This table or related slice is empty.
    3. VO
      singulars
      1. This table or related slice is empty.
 

Querying!

 
Guidance

SQuiL has stopped working due to an internal error.

If you are curious you may find further information in the browser console, which is accessible through the devtools (F12).

Reload