Lyx - 人物列表

Lyx - 人物列表

我正在使用 LyX 和报告类。(KOMA-Script)。我的图片列表只打印图号及其标题,不打印单词数字前面。我怎样才能修改 Latex 序言中的命令?

答案1

您可以简单使用 KOMA-Option listof=entryprefix。有两种可能性:

\documentclass[listof=entryprefix]{scrreprt}

或者

\documentclass{scrreprt}
\KOMAoptions{listof=entryprefix}

在此处输入图片描述

\documentclass{scrreprt}
\KOMAoptions{listof=entryprefix}

\begin{document}

\listoffigures

\chapter{First chapter}
\begin{figure}[!ht]
  \centering
  \rule{2cm}{2cm}
  \caption{test figure one}
  \label{fig:test1}
\end{figure}
\begin{figure}[!ht]
  \centering
  \rule{2cm}{2cm}
  \caption{test figure two}
  \label{fig:test2}
\end{figure}

\end{document}

相关内容