使用该包,我可以通过重新定义等来tocloft
改变“表格/图形列表”的外观。\cfttoctitlefont
但是,我使用该包创建了一个新的浮点类型,称为“Example” newfloat
。有没有办法以类似的方式控制“示例列表”中的字体?
答案1
由于该newfloat
包内部使用\listoffigures
来构建新列表,因此只需重新定义\cftloftitlefont
:
\documentclass{article}
\usepackage{tocloft}
\usepackage{newfloat}
\renewcommand\cfttoctitlefont{\normalfont\itshape}
\renewcommand\cftloftitlefont{\normalfont\itshape}
\DeclareFloatingEnvironment{example}
\begin{document}
\tableofcontents
\listofexamples
\end{document}