如何更改圖形清單中的順序以及如何更改圖形清單標題的樣式?

如何更改圖形清單中的順序以及如何更改圖形清單標題的樣式?

我想我的問題是非常基本的問題,但由於我是乳膠新手,我無法解決它。我想要斜體的“圖表列表”標題。在圖形清單中,我不想使用圖形數字,而是使用圖形編號本身,例如圖 1、圖 2 等。

答案1

使用該tocloft包:

\documentclass...
\usepackage{tocloft}
\renewcommand{\cftloftitlefont}{\Large\itshape} % italic LoF title
\setlength{\cftfignumwidth}{5em} % space for Figure and number; change to suit
\renewcommand{\cftfigpresnum}{Figure} % put Figure before number

閱讀手冊(texdoc tocloft)並對上述代碼進行適當的調整。

相關內容