将清单添加到图表列表中

将清单添加到图表列表中

我正在使用该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}

上述清单示例取自listings 文档(部分1.3 弄清楚外观,第 5 页)。

相关内容