使用 ccaption 和 threeparttable 时表格未居中对齐

使用 ccaption 和 threeparttable 时表格未居中对齐

我正在使用一个模板来写我的论文。这个模板用来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}

相关内容