答案1
我建议你加载三部分表\caption
将指令和tabular
(或array
)环境打包并嵌入到threeparttable
环境中。
\documentclass{article}
\usepackage{caption,threeparttable}
\captionsetup{justification = raggedleft,
singlelinecheck = off}
\begin{document}
\begin{table}
\centering
\begin{threeparttable}
\caption{A caption}
\begin{tabular}{|cccccccc|}
\hline
aaa & bbb & ccc & ddd & eee & fff & ggg & hhh \\
\hline
\end{tabular}
% optional: provide 'tablenotes' environment if needed
\end{threeparttable}
\end{table}
\end{document}