如何更改表格标题的编号系统?

如何更改表格标题的编号系统?

通常,表格的标题为“表格 1:Blah blah...”,但我想将其更改为“表格 I。Blah blah...”。我该怎么做?到目前为止,我已经弄清楚了如何将标题和句号更改为罗马数字,但不将数字更改为罗马数字:

\usepackage[labelsep=period]{caption}
\captionsetup[table]{name=TABLE}

答案1

\documentclass{article}
\usepackage[labelsep=period]{caption}
\captionsetup[table]{name=TABLE}
\renewcommand{\thetable}{\Roman{table}}
\begin{document}
  \begin{table}
    A table
    \caption{My table}
  \end{table}
\end{document}

在此处输入图片描述

相关内容