我正在使用一个模板来写我的论文。这个模板用来ccaption
制作双语标题,但我发现当我一起使用时,我无法使表格居中threeparttable
。这是我的 mwe
\documentclass{article}
\usepackage[showframe]{geometry}
\usepackage{ccaption}
\usepackage{threeparttable}
\begin{document}
\begin{table}[htbp]
\centering
\begin{threeparttable}
\centering
\bicaption{Short}{Long}{Bild}{Langlauf}
\begin{tabular}{c|c} \hline
testtest & testtest\\\hline
\end{tabular}
\begin{tablenotes}
\item[a] note
\end{tablenotes}
\end{threeparttable}
\end{table}
\end{document}
两者都\centering
不起作用,如何解决这个问题?
答案1
\documentclass{article}
\usepackage[showframe]{geometry}
\usepackage{ccaption}
\usepackage{threeparttable}
\begin{document}
\begin{table}[htbp]
\centering
\bicaption{Short}{Long}{Bild}{Langlauf}
\begin{threeparttable}
\begin{tabular}{c|c} \hline
testtest & testtest\\\hline
\end{tabular}
\begin{tablenotes}
\item[a] note
\end{tablenotes}
\end{threeparttable}
\end{table}
\end{document}