LaTeX列表:针对不同列表环境的不同计数器

时间:2010-10-10 15:13:21

标签: latex listings caption

如何创建两个每个都有自己的计数器的lstlisting环境?

如果我使用例如

\lstnewenvironment{algorithm}[2]{
    \renewcommand\lstlistingname{Algorithm}
    \lstset{ ... }
} {}

\lstnewenvironment{program}[2]{
    \renewcommand\lstlistingname{Program}
    \lstset{ ... }
} {}

然后

\begin{algorithm}{Algorithm caption}{alg-label}
...
\end{algorithm}

\begin{program}{Program caption}{prg-label}
...
\end{program}

然后他们将共享计数器,即它将在例如

中产生
Algorithm 1.1
    ...
Program 1.2
    ...

我希望计数对于不同的列表环境是独立的。

我还使用标题包来创建一个漂亮的标题。我已经尝试了很多东西,但没有一个真的成功。我发现的唯一方法是指示如何更改计数器/文件扩展名是通过ie \ DeclareCaptionType [fileext = alg] {algorithm}但问题是这个命令已经定义了一个新的环境所以我不知道如何使用它与新的列表环境和标题包一起使用。我正在使用以下设置:

\DeclareCaptionFont{white}{\color{white}}
\DeclareCaptionFormat{listing}{\colorbox[cmyk]{0.43, 0.35, 0.35,0.01}{\parbox{\textwidth}{\hspace{15pt}#1#2#3}}}
\captionsetup[lstlisting]{format=listing,labelfont=white,textfont=white, singlelinecheck=false, margin=0pt, font={bf,footnotesize}}

1 个答案:

答案 0 :(得分:1)

\newcounter{algorithm}
\newcounter{program}

\makeatletter
\lstnewenvironment{algorithm}[2]{
  \renewcommand\lstlistingname{Algorithm}
  \let\c@lstlisting=\c@algorithm
  \let\thelstlisting=\thealgorithm
  \lstset{caption=#1}
} {}

\lstnewenvironment{program}[2]{
  \renewcommand\lstlistingname{Program}
  \let\c@lstlisting=\c@program
  \let\thelstlisting=\theprogram
  \lstset{caption=#1}
} {}
\makeatother