我的文档中有两组表格。我能够用其他名称标记第二种类型,这要归功于以下内容:
\DeclareCaptionType{cuad}[Cuadro][Índice de Cuadros Estadísticos]
现在我想将这 1 个添加为 LoT,并附上标题和编号 (Cuadro 1: blablabla)。但是当我使用:
\listofcuads %índice de cuadros estadísticos
因此,为了添加 Cuadro 这个词,我使用了:
{%
\let\oldnumberline\numberline%
\renewcommand{\numberline}{\cuadname~\oldnumberline}%
\listofcuads%
}
我尝试过使用:
\newlength\mylen
\renewcommand\cfttabpresnum{Cuadro }
\settowidth\mylen{\cfttabpresnum\cfttabaftersnum}
\addtolength\cfttabnumwidth{\mylen}
\setlength\cfttabindent{0pt}
更改“cuad”的“tab”环境。但仍然没有结果。
如果你能帮助我,我将非常感激你!