![Diferentes tipos de subtítulos](https://rvso.com/image/254714/Diferentes%20tipos%20de%20subt%C3%ADtulos.png)
Tengo cuatro mesas. La primera tabla tiene el título Table A: Title
. Las otras tres tablas tienen títulos de Table 1: Title
, Table 2: Title
y Table 3: Title
.
cuando uso
\caption{Title}
me da Table 1: Title
, Table 2
, Table 3
y Table 4
, pero no quiero este formato.
Respuesta1
Debe cambiar la numeración a Alph
para la primera tabla y luego volver a cambiarla a arabic
. Además, debe retroceder el contador de la mesa uno, para que no obtenga la tabla A seguida de la tabla 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}