不同类型的字幕

不同类型的字幕

我有四张表格。第一张表格的标题为Table A: Title。其他三张表格的标题为Table 1: TitleTable 2: TitleTable 3: Title

当我使用

 \caption{Title}

它给了我,,,Table 1: Title和,但我不想要这种格式。Table 2Table 3Table 4

答案1

您需要将第一个表的编号改为Alph,然后再改回arabic。此外,您需要将表计数器往后退一位,这样就不会出现表 A 后面跟着表 2 的情况。

\documentclass{article}
\begin{document}
\renewcommand\thetable{\Alph{table}}
%
\begin{table}
\centering\rule{2cm}{2cm} %Replace with tabular
\caption{The first}
\end{table}
%
\addtocounter{table}{-1}
\renewcommand\thetable{\arabic{table}}
%
\begin{table}
\centering\rule{2cm}{2cm} %Replace with tabular
\caption{The second}
\end{table}
%
\begin{table}
\centering\rule{2cm}{2cm} %Replace with tabular
\caption{The third}
\end{table}
\end{document}

相关内容