James Bray's Latex Help - Tables
Latex
>
Tables
Latex Tables
Latex Table Commands
The following text can be cut-and-pasted into your latex document into the place where
you want your table to appear. Each table is defined by a
\begin{figure} and \end{figure} tags.
% BEGIN TABLE X
% SUBJECT: TABLE
\begin{table}[h]
\vspace{3mm}
{\centering
\begin{tabular}[t]{|c|c|}
\hline
\pbox[t]{20mm}{\textbf{Heading}} &
\pbox[t]{100mm}{\textbf{Heading}} \\
\hline
\hline
\pbox[t]{20mm}{\textbf{A}} &
\pbox[t]{100mm}{\raggedright Text} \\
\hline
\pbox[t]{20mm}{\textbf{B}} &
\pbox[t]{100mm}{\raggedright Text} \\
\hline
\pbox[t]{20mm}{\textbf{C}} &
\pbox[t]{100mm}{\raggedright Text} \\
\hline
\end{tabular}
\par}
\centering
\caption
[Short table caption for list of tables]
{Long table caption to appear below the table}
\label{table:template}
\vspace{3mm}
\end{table}
% END TABLE X