图列表字体

图列表字体

实际上,当我生成图表列表时,图表标题中的单词实际上是斜体,但在图表列表中也是斜体。问题是:如何生成图表列表,其中所有条目都是纯文本,同时保持图表标题中的斜体。提前致谢。

答案1

假设使用了标准类,包caption就会提供帮助。

tahirsengineCaptionFontLofFont

\documentclass{article}
\usepackage{caption}
\captionsetup[figure]{font=it}
\begin{document}
\listoffigures
\section{Wombat}
\captionof{figure}{If there would be a picture, it would show a duck.}
\end{document}

相关内容