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}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
threeparttable package. For example: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}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