Is it possible to include "table code" as a sub-figure (instead of an image) using the package subfig? If so, how?
2 Answers
You can include any content (table, text, figure, ...) within a figure or table environment. That is, there is no restriction to only have figures within a figure environment, nor to only have a tabular within a table environment. The same goes for \subfloat from the \subfig package. The respective environments just maintain different counters and they end up in different "List of ..."s - administrative differences of sorts.
Here's a minimal example:

\documentclass{article}
\usepackage{subfig}% http://ctan.org/pkg/subfig
\usepackage{booktabs}% http://ctan.org/pkg/booktabs
\newcommand{\mytab}{% Just for this example
\begin{tabular}{lcr}
\toprule
One & Two & Three \\
\midrule
$x$ & $y$ & $z$ \\
1 & 2 & 3 \\
\bottomrule
\end{tabular}
}
\begin{document}
\begin{figure}%
\centering
\subfloat[][]{\mytab}%
\qquad
\subfloat[][]{\mytab}
\caption{Here are some tables in a \texttt{figure} environment.}%
\label{fig:table}%
\end{figure}
\begin{table}%
\centering
\subfloat[][]{\mytab}%
\qquad
\subfloat[][]{\mytab}
\caption{Here are some tables in a \texttt{table} environment.}%
\label{tbl:table}%
\end{table}
\end{document}
Use package \usepackage{subfig}, and the latex code is
\begin{table}[htb]
\centering
\subfloat[Caption for subtable 1]{%
\begin{tabular}{ |c|c|c| }
\hline
Regressor Model & Train & Test \\
\hline
\end{tabular}}
\quad % Adjust the spacing between subtables if needed
\subfloat[Caption for subtable 2]{%
\begin{tabular}{ |c|c|c| }
\hline
Regressor Model & Train & Test \
\hline
% Add your table content here
\end{tabular}%
}
\caption{Overall table caption}
\label{tab:mytable}
\end{table}
- 101
figureandtable? I really don't know this. – kiss my armpit Mar 08 '12 at 21:35%is/are really necessary in your code above? – kiss my armpit Mar 08 '12 at 21:36%following\subfloatseems necessary (not exactly sure). I took the example from thesubfigdocumentation. – Werner Mar 08 '12 at 21:44