我正在使用该listings
包在我的文档中显示代码。是否可以将列表添加到图片列表中。标题中应该有图片,而不是列表,并且它应该与图片共享相同的计数器。
答案1
获得此信息的最简单的方法是将您的列表直接插入到figure
环境中:
\documentclass{article}
\usepackage{listings}% http://ctan.org/pkg/listings
\lstset{% general command to set parameter(s)
basicstyle=\small, % print whole listing small
keywordstyle=\color{black}\bfseries\underbar, % underlined bold black keywords
identifierstyle=, % nothing happens
commentstyle=\color{white}, % white comments
stringstyle=\ttfamily, % typewriter type for strings
showstringspaces=false} % no special string spaces
\begin{document}
\listoffigures
\begin{figure}
\rule{150pt}{100pt}%
\caption{A normal figure}
\end{figure}
\begin{figure}
\begin{lstlisting}
for i:=maxint to 0 do
begin
{ do nothing }
end;
Write(’Case insensitive ’);
WritE(’Pascal keywords.’);
\end{lstlisting}
\caption{This is a listing}
\end{figure}
\end{document}