Graphics, Figures & Tables ⇒ Table with multi-column footnotes
-
- Posts: 11
- Joined: Fri Jul 24, 2009 11:07 pm
Table with multi-column footnotes
Thanks in advance!
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
Table with multi-column footnotes
para
:Code: Select all
\documentclass{article}
\usepackage[para]{threeparttable}
\usepackage{array}
\begin{document}
\begin{table}
\begin{threeparttable}[t]
\caption{...}
\begin{tabular}{*4{p{.2\linewidth}}}
\hline
text\tnote{1} & text\tnote{2} & text\tnote{3} & text\tnote{4} \\
some & more & text & to \\
produce & some & table & lines \\
\hline
\end{tabular}
\begin{tablenotes}\footnotesize
\item [1] the first note
\item [2] the second note
\item [3] the third note
\item [4] the fourth note
\end{tablenotes}
\end{threeparttable}
\end{table}
\end{document}
-
- Posts: 11
- Joined: Fri Jul 24, 2009 11:07 pm
Re: Table with multi-column footnotes
