我正在使用该包listings
来保存文档中的代码片段。但我希望它们被命名为“代码”而不是“列表”。我的文档中已经有了它,但当我创建一个时\lstlistoflistings
,它仍然以“列表”为标题。
我怎样才能将主题更改为“代码片段”?(或其他什么?)
\documentclass{article}
\usepackage{listings}
\begin{document}
\lstlistoflistings
\renewcommand{\lstlistingname}{Code}
\section{foo}
\begin{lstlisting}[caption={A listing}]
Some source code
\end{lstlisting}
\end{document}
答案1
虽然\lstlistingname
给出了单个列表的名称,但列表列表的名称由给出\lstlistlistingname
。因此只需执行以下操作:
\renewcommand{\lstlistlistingname}{Code fragments}