On Apr 14, 8:40 pm, Chris Melnick <
cmeln...@gmail.com> wrote:
> Hey,
> I would like:
> <----------------------------- Page Width
> ------------------------------>
> [TABLE1] [TABLE2] [TABLE3] [TABLE4]
> [TABLE5] [TABLE6]
you could do something like the example below (using the famous
example of a 'bad' latex table and the revised version suggested in
the booktabs package --- though here modified from the memoir manual):
cheers,
jon.
% ---------------------8<--------------------- %
\documentclass{article}
\usepackage{booktabs}
\usepackage{caption}
\usepackage{subfig}
\begin{document}
\begin{figure}
\centering
\caption{Two views of one table} \label{tab:twoviews}
\subfloat[Before]{\label{tab:before}%
\begin{tabular}{||l|lr||} \hline
gnats & gram & \$13.65 \\ \cline{2-3}
& each & .01 \\ \hline
gnu & stuffed & 92.50 \\ \cline{1-1} \cline{3-3}
emu & & 33.33 \\ \hline
armadillo & frozen & 8.99 \\ \hline
\end{tabular}
}
\hfill
\subfloat[After]{\label{tab:after}%
\begin{tabular}{@{}llr@{}} \toprule
\multicolumn{2}{c}{Item} \\ \cmidrule(r){1-2}
Animal & Description & Price (\$)\\ \midrule
Gnat & per gram & 13.65 \\
& each & 0.01 \\
Gnu & stuffed & 92.50 \\
Emu & stuffed & 33.33 \\
Armadillo & frozen & 8.99 \\ \bottomrule
\end{tabular}
}
\end{figure}
\end{document}