Diferentes tipos de subtítulos

Diferentes tipos de subtítulos

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: Titley Table 3: Title.

cuando uso

 \caption{Title}

me da Table 1: Title, Table 2, Table 3y Table 4, pero no quiero este formato.

Respuesta1

Debe cambiar la numeración a Alphpara 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}

información relacionada