我想为表格创建两个不同的标题名称。本质上,我想做与本文中相同的事情 (两个图片标题名称),但用于表格而不是图形。我尝试使用\usepackage{caption}
环境并对其进行修改,但对我来说不起作用。
答案1
\documentclass{article}
\usepackage{caption}
\DeclareCaptionType{diag}[Diagram][Table of diagrams]
\begin{document}
\begin{table}[t]
\centering
TABLE
\caption{Title}
\end{table}
\begin{diag}[t]
\centering
DIAGRAM
\caption{Title}
\end{diag}
\end{document}