I use the subtables environment from the subfloat package to combine table numbering (i.e., any tables I wrap in the subtables environment get labeled 1a, 1b, and so on). But I just learned on the LaTeX wiki how to use the subfloat environment from the subfig package for figures and it seems that I should use the subfloat environment from the subfig package for tables, too. Is this correct?
The rub is that I frequently use the sidewaystable environment from the rotating package. Can I rotate tables using the subfloat environment from the subfig package? (I can't figure out how from the manual.) This would allow side-by-side sideways tables. Or should I stick with my more naive approach using the subfloat package?
Here is an example of how I combine the subtables and sidewaystable environments.
\documentclass{article}
\usepackage{subfloat}
\usepackage{rotating}
\begin{document}
Check out tables \ref{tab:first} and \ref{tab:second}.
\begin{subtables}
\begin{sidewaystable}
\centering
\begin{tabular}{ccc}
\hline
a&b&c\\
d&e&f\\
\hline
\end{tabular}
\caption{my first table}
\label{tab:first}
\end{sidewaystable}
\begin{sidewaystable}
\centering
\begin{tabular}{ccc}
\hline
a&b&c\\
d&e&f\\
\hline
\end{tabular}
\caption{my second table, which is the same as the first}
\label{tab:second}
\end{sidewaystable}
\end{subtables}
\end{document}



tabulars in onesidewaystable. Is there a good book on LaTeX? I learn most of this stuff in a vacuum, but the other programs I use (R, Stata) have consoles andhelpcommands. Thanks! – Richard Herron Jan 21 '12 at 18:30