我有两个表格必须并排放置,并横跨文章的两列。为此,我编写了以下代码:
\begin{table*}[!ht]
\parbox{.40\linewidth}{
\hfill{}
\caption{\label{table:accuracy} Accuracy of the Neural Networks}
\hfill{}
\begin{tabular}{@{}ccccccc@{}}
TABLE CONTENT HERE
\end{tabular}
}
\hfill{}
\parbox{.38\linewidth}{
\caption{Architecture of the Slim NN and parameters count\label{table:model}}
\hfill{}
\begin{tabular}{lcc}
TABLE CONTENT
\end{tabular}
\hfill{}
}
\end{table*}
然而,在编译时,我出现了不受欢迎的行为,即第一个表格的标题左对齐(见图),而我希望它居中于表格的中心
我尝试了这个社区提供的大多数解决方案,例如使用\centering
或\usepackage[justification=centering]{caption}
但没有任何效果