顶部和中心的副标题标签

顶部和中心的副标题标签
\begin{table}[H]
\tiny
\subfloat[A]{
\centering
\begin{tabular}{l l l l}
g1 & g2  & ex & Error Rate\\
\hline

0.001 & 0.001 & 0.001 & 0.331\\

0.001 & 0.001 & 0.01  & 0.336 \\

0.001 & 0.001 & 0.1   & 0.333\\

0.001 & 0.01 & 0.001  & 0.331\\

0.001 & 0.01 & 0.01   & 0.336\\

0.001 & 0.01 & 0.1    & 0.333\\

\end{tabular}}
\qquad
\subfloat[B]{
\centering
\begin{tabular}{l l l l}

g1 & g2  & ex & Error Rate\\

\hline

0.001 & 0.001 & 0.001 & 0.246\\

0.001 & 0.001 & 0.01  & 0.220 \\


\end{tabular}}

答案1

如果我理解正确的话,position=top这就是您所需要的。您可以\captionsetup{position=top}在里面添加table以将其应用于单个表,也可以添加\captionsetup[subtable]{position=top}到序言中以将其应用于所有子表。

\documentclass{article}
\usepackage{subfig}
\captionsetup[subtable]{position=top}
\begin{document}
\begin{table}
\tiny
%\captionsetup{position=top} % to apply it for a single table
\subfloat[A]{
\centering
\begin{tabular}{l l l l}
g1 & g2  & ex & Error Rate\\
\hline
0.001 & 0.001 & 0.001 & 0.331\\
0.001 & 0.001 & 0.01  & 0.336 \\
0.001 & 0.001 & 0.1   & 0.333\\
0.001 & 0.01 & 0.001  & 0.331\\
0.001 & 0.01 & 0.01   & 0.336\\
0.001 & 0.01 & 0.1    & 0.333\\
\end{tabular}}
\qquad
\subfloat[B]{
\centering
\begin{tabular}{l l l l}
g1 & g2  & ex & Error Rate\\
\hline
0.001 & 0.001 & 0.001 & 0.246\\
0.001 & 0.001 & 0.01  & 0.220 \\
\end{tabular}}
\end{table}
\end{document}

相关内容