I use
{tabular}
to arrange tables. Code: Select all
\begin{table}[t]
table 1: ...
\begin{tabular}{l c c c}
...
\end{tabular}
\\ Notes: ... \\
\end{table}
Any suggestion is appreciated.
Lynn
{tabular}
to arrange tables. Code: Select all
\begin{table}[t]
table 1: ...
\begin{tabular}{l c c c}
...
\end{tabular}
\\ Notes: ... \\
\end{table}
NEW: TikZ book now 40% off at Amazon.com for a short time.
Code: Select all
\documentclass{article}
\usepackage{threeparttable}
\begin{document}
\begin{threeparttable}[hb]
\caption{Example table}
\begin{tabular}{l c c c}
One & Two & Three & Four
\end{tabular}
\begin{tablenotes}
\item [1] Here is the first Note, the width
is equal to the body of the table
\end{tablenotes}
\end{threeparttable}
\end{document}
NEW: TikZ book now 40% off at Amazon.com for a short time.