索引及图表目录

索引及图表目录

我在 ShareLatex 的一个项目中遇到了类似的问题。一边是我拥有的目录,另一边是我想要的目录。我找不到怎么做。我只在 ShareLatex 上工作过,所以我的知识非常有限。

我拥有什么以及我想要什么的例子。

编辑:此代码用于更改图表列表中的引用,也适用于表格列表。如果它无法正确显示名称,您可以figurename替换{Name}

{
\let\oldnumberline\numberline
\renewcommand{\listfigurename}{Lista de Figuras}
\renewcommand{\numberline}{\figurename~\oldnumberline}
\listoffigures
}

編輯2:此代码用于为article类中的部分添加点

\usepackage{tocloft}
\renewcommand{\cftsecleader}{\cftdotfill{\cftdotsep}}

答案1

对于可能有同样问题的人,这是解决方案。此代码用于更改图片列表中的引用,也适用于表格列表。如果它没有正确显示名称,您可以figurename替换{Name}

{
\let\oldnumberline\numberline
\renewcommand{\listfigurename}{Lista de Figuras}
\renewcommand{\numberline}{\figurename~\oldnumberline}
\listoffigures
}

此代码用于为article类中的部分添加点

\usepackage{tocloft}
\renewcommand{\cftsecleader}{\cftdotfill{\cftdotsep}}

相关内容