Tables
Tables in Column
Use the following template to include tables in the column:
\begin{table}[htbp!]
\centering\small{ %\resizebox{\columnwidth}{!}{
\begin{tabular}{c|ccc}
\toprule
\bf A & \bf B & \bf C & \bf D \\
\midrule
0 & A0 & B0 & C0 \\
1 & A1 & B1 & C1 \\
2 & A2 & B2 & C2 \\
3 & A3 & B3 & C3 \\
\bottomrule
\end{tabular}}
\caption{Description of this table.}
\label{tab:name}
\end{table}Use the following options for all tables:
\begin{table}[htbp!]
\centering\small{ %\resizebox{\columnwidth}{!}{If the table exceeds the column width, put the tabular inside a \resizebox instead:
Make sure values in the header row are always center-aligned regardless of the configuration. You can specify this by using \multicolumn:
Make sure the label starts with the prefix tab:.
Tables in Page
Use the following template to include tables that expand to the full page.
If the table exceeds the page width, use
\textwidthinstead of\columnwidthfor\resizebox.See the other explanations for the Tables in Column.
Sub-Tables
Use the following template to create sub-tables.
The
subtableenvironment requires thesubcaptionpackage.Put
\vspace{0.5em}at the end of every sub-table except for the very last one.See Tables in Page to create sub-tables that expand to the full page.
Last updated