自定义标题前缀

时间:2012-05-29 11:33:28

标签: latex listings

使用时:

\begin{listing}
...
\caption{foo}
\end{listing}

标题会说:Listing x: foo。如何用其他内容替换单词Listing

2 个答案:

答案 0 :(得分:3)

如果你正在使用铸造(我是,我的来源看起来像你的),你可能想尝试

\renewcommand{\listingscaption}{Some fancy listing}

答案 1 :(得分:2)

您可能需要阅读手册

http://mirror.switch.ch/ftp/mirror/tex/macros/latex/contrib/listings/listings.pdf

第32页

\begin{listing}[caption=Some fancy listing]

或尝试

\begin{listing}[title=Some fancy listing]

或尝试

\renewcommand{\lstlistingname}{A funny listing}

对我有用的最小例子:

\documentclass{article}

\usepackage{listings}
\renewcommand{\lstlistingname}{Something}

\begin{document}
Some text.
\begin{lstlisting}[caption=wwww]
xxxx
\end{lstlisting}
Some more text.
\end{document}