<?xml version="1.0" encoding="UTF-8"?><rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:dc="http://purl.org/dc/elements/1.1/"
	xmlns:atom="http://www.w3.org/2005/Atom"
	xmlns:sy="http://purl.org/rss/1.0/modules/syndication/"
		>
<channel>
	<title>Comments on: LaTeX: adding footnotes in tables (or other floats)</title>
	<atom:link href="http://dound.com/2009/06/latex-adding-footnotes-in-tables-or-other-floats/feed/" rel="self" type="application/rss+xml" />
	<link>http://dound.com/2009/06/latex-adding-footnotes-in-tables-or-other-floats/</link>
	<description>dound&#039;s space on the web</description>
	<lastBuildDate>Sun, 25 Jul 2010 21:17:31 -0700</lastBuildDate>
	<generator>http://wordpress.org/?v=2.9.2</generator>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
		<item>
		<title>By: A Okasha</title>
		<link>http://dound.com/2009/06/latex-adding-footnotes-in-tables-or-other-floats/comment-page-1/#comment-6876</link>
		<dc:creator>A Okasha</dc:creator>
		<pubDate>Wed, 21 Jul 2010 10:00:53 +0000</pubDate>
		<guid isPermaLink="false">http://dound.com/?p=184#comment-6876</guid>
		<description>Thanks a lot.
That&#039;s really help</description>
		<content:encoded><![CDATA[<p>Thanks a lot.<br />
That&#8217;s really help</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Bambar</title>
		<link>http://dound.com/2009/06/latex-adding-footnotes-in-tables-or-other-floats/comment-page-1/#comment-6212</link>
		<dc:creator>Bambar</dc:creator>
		<pubDate>Mon, 10 May 2010 17:54:00 +0000</pubDate>
		<guid isPermaLink="false">http://dound.com/?p=184#comment-6212</guid>
		<description>Thank you Jason. It also worked for me. Nice!</description>
		<content:encoded><![CDATA[<p>Thank you Jason. It also worked for me. Nice!</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Bernardes</title>
		<link>http://dound.com/2009/06/latex-adding-footnotes-in-tables-or-other-floats/comment-page-1/#comment-6038</link>
		<dc:creator>Bernardes</dc:creator>
		<pubDate>Sun, 25 Apr 2010 03:04:15 +0000</pubDate>
		<guid isPermaLink="false">http://dound.com/?p=184#comment-6038</guid>
		<description>Other way very simple is to make:

\newcommand{\newfootnotemark}[1]{\addtocounter{footnote}{#1} \footnotemark[\value{footnote}]}
\newcommand{\newfootnotetext}[2]{\addtocounter{footnote}{#1} \footnotetext[\value{footnote}]{#2}}

in the preamble and to use as 

\begin{table}[htb]
   \centering
   \large
   \setlength{\arrayrulewidth}{2\arrayrulewidth}
   \setlength{\belowcaptionskip}{10pt}
   \caption{\it Caption da Tabela.}
   \begin{tabular}{&#124;l&#124;r&#124;}
      \hline
      \multicolumn{2}{&#124;c&#124;}{\textbf{Mesclar Duas Colunas}} \\
      \hline
      \textbf{Módulo} &amp; \textbf{Dias}\\
      \hline
      Modulo I &amp; 10 \newfootnotemark{1} \\
      \hline
      Módulo II &amp; 5 \newfootnotemark{1}\\
      \hline
   \end{tabular}
\end{table}

\newfootnotetext{-1}{Nota do Módulo I.}
\newfootnotetext{1}{Nota do Módulo II.}</description>
		<content:encoded><![CDATA[<p>Other way very simple is to make:</p>
<p>\newcommand{\newfootnotemark}[1]{\addtocounter{footnote}{#1} \footnotemark[\value{footnote}]}<br />
\newcommand{\newfootnotetext}[2]{\addtocounter{footnote}{#1} \footnotetext[\value{footnote}]{#2}}</p>
<p>in the preamble and to use as </p>
<p>\begin{table}[htb]<br />
   \centering<br />
   \large<br />
   \setlength{\arrayrulewidth}{2\arrayrulewidth}<br />
   \setlength{\belowcaptionskip}{10pt}<br />
   \caption{\it Caption da Tabela.}<br />
   \begin{tabular}{|l|r|}<br />
      \hline<br />
      \multicolumn{2}{|c|}{\textbf{Mesclar Duas Colunas}} \\<br />
      \hline<br />
      \textbf{Módulo} &amp; \textbf{Dias}\\<br />
      \hline<br />
      Modulo I &amp; 10 \newfootnotemark{1} \\<br />
      \hline<br />
      Módulo II &amp; 5 \newfootnotemark{1}\\<br />
      \hline<br />
   \end{tabular}<br />
\end{table}</p>
<p>\newfootnotetext{-1}{Nota do Módulo I.}<br />
\newfootnotetext{1}{Nota do Módulo II.}</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Vincent Gibbs</title>
		<link>http://dound.com/2009/06/latex-adding-footnotes-in-tables-or-other-floats/comment-page-1/#comment-5737</link>
		<dc:creator>Vincent Gibbs</dc:creator>
		<pubDate>Wed, 24 Mar 2010 16:34:01 +0000</pubDate>
		<guid isPermaLink="false">http://dound.com/?p=184#comment-5737</guid>
		<description>Why not just use: \protect\footnotemark[1] then use \footnotetext[1]{your text} where ever you want the foot not to appear.</description>
		<content:encoded><![CDATA[<p>Why not just use: \protect\footnotemark[1] then use \footnotetext[1]{your text} where ever you want the foot not to appear.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Stefan Koch</title>
		<link>http://dound.com/2009/06/latex-adding-footnotes-in-tables-or-other-floats/comment-page-1/#comment-5506</link>
		<dc:creator>Stefan Koch</dc:creator>
		<pubDate>Sun, 21 Feb 2010 14:22:09 +0000</pubDate>
		<guid isPermaLink="false">http://dound.com/?p=184#comment-5506</guid>
		<description>It is possible to use \footnotemark which will increase the counter by one automatically and then set the text via \footnotetext{text}. Works fine in my LaTeX-file.</description>
		<content:encoded><![CDATA[<p>It is possible to use \footnotemark which will increase the counter by one automatically and then set the text via \footnotetext{text}. Works fine in my LaTeX-file.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Sami</title>
		<link>http://dound.com/2009/06/latex-adding-footnotes-in-tables-or-other-floats/comment-page-1/#comment-5135</link>
		<dc:creator>Sami</dc:creator>
		<pubDate>Sat, 09 Jan 2010 04:25:59 +0000</pubDate>
		<guid isPermaLink="false">http://dound.com/?p=184#comment-5135</guid>
		<description>How to change the style of the footnote to appear the numbers in prackets
like (1), (2) instead of: 1. 2. 
thanks</description>
		<content:encoded><![CDATA[<p>How to change the style of the footnote to appear the numbers in prackets<br />
like (1), (2) instead of: 1. 2.<br />
thanks</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: bummen</title>
		<link>http://dound.com/2009/06/latex-adding-footnotes-in-tables-or-other-floats/comment-page-1/#comment-5025</link>
		<dc:creator>bummen</dc:creator>
		<pubDate>Thu, 31 Dec 2009 12:00:54 +0000</pubDate>
		<guid isPermaLink="false">http://dound.com/?p=184#comment-5025</guid>
		<description>Excellen share Jason.. thank you very much.. perfect solution</description>
		<content:encoded><![CDATA[<p>Excellen share Jason.. thank you very much.. perfect solution</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Yue</title>
		<link>http://dound.com/2009/06/latex-adding-footnotes-in-tables-or-other-floats/comment-page-1/#comment-4783</link>
		<dc:creator>Yue</dc:creator>
		<pubDate>Wed, 25 Nov 2009 22:51:37 +0000</pubDate>
		<guid isPermaLink="false">http://dound.com/?p=184#comment-4783</guid>
		<description>Thank you Jason.  The threeparttable worked for me!!</description>
		<content:encoded><![CDATA[<p>Thank you Jason.  The threeparttable worked for me!!</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Jason</title>
		<link>http://dound.com/2009/06/latex-adding-footnotes-in-tables-or-other-floats/comment-page-1/#comment-4166</link>
		<dc:creator>Jason</dc:creator>
		<pubDate>Sun, 04 Oct 2009 07:38:59 +0000</pubDate>
		<guid isPermaLink="false">http://dound.com/?p=184#comment-4166</guid>
		<description>Thanks for the post. I found it only AFTER I found another solution. I am not for sure which is more robust or which requires less typing. Here is the solution that I found searching TUG.

\usepackage{threeparttable}

\begin{table}
\begin{threeparttable}
\begin{tabular}{cc}
something weird\tnote{a} &amp; something even weirder\tnote{b}
\end{tabular}
\begin{tablenotes}
\item [a] What is so weird?
\item [b] Oh that is what is weird
\end{tablenotes}
\end{threeparttable}
\end{table}

The surrounding table makes sure that table handles the float. There are some options that are provided by the package. Additionally, the package ctable will do something similar. However, ctable requires a totally new syntax structure for building the table. Thus, I used threeparttable and it WORKED.</description>
		<content:encoded><![CDATA[<p>Thanks for the post. I found it only AFTER I found another solution. I am not for sure which is more robust or which requires less typing. Here is the solution that I found searching TUG.</p>
<p>\usepackage{threeparttable}</p>
<p>\begin{table}<br />
\begin{threeparttable}<br />
\begin{tabular}{cc}<br />
something weird\tnote{a} &amp; something even weirder\tnote{b}<br />
\end{tabular}<br />
\begin{tablenotes}<br />
\item [a] What is so weird?<br />
\item [b] Oh that is what is weird<br />
\end{tablenotes}<br />
\end{threeparttable}<br />
\end{table}</p>
<p>The surrounding table makes sure that table handles the float. There are some options that are provided by the package. Additionally, the package ctable will do something similar. However, ctable requires a totally new syntax structure for building the table. Thus, I used threeparttable and it WORKED.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Brandon Heller</title>
		<link>http://dound.com/2009/06/latex-adding-footnotes-in-tables-or-other-floats/comment-page-1/#comment-4064</link>
		<dc:creator>Brandon Heller</dc:creator>
		<pubDate>Tue, 29 Sep 2009 08:42:51 +0000</pubDate>
		<guid isPermaLink="false">http://dound.com/?p=184#comment-4064</guid>
		<description>Thanks for the post, David! 

I had a problem where I could see the inline footnote number in the table, but no footnote description was printed at the bottom of the page.  

The solution was to move the \footnotetext block out of the table block that enclosed the tabular with my footnote.  You might want to update the example with a tabular inside a table to show this.</description>
		<content:encoded><![CDATA[<p>Thanks for the post, David! </p>
<p>I had a problem where I could see the inline footnote number in the table, but no footnote description was printed at the bottom of the page.  </p>
<p>The solution was to move the \footnotetext block out of the table block that enclosed the tabular with my footnote.  You might want to update the example with a tabular inside a table to show this.</p>
]]></content:encoded>
	</item>
</channel>
</rss>
