创建两个半独立的材料列表,它们共享计数器

创建两个半独立的材料列表,它们共享计数器

我成功地使用\newlistof{listofA}{A}{List of As}\newlistentry{mycounter}{A}{0}创建了一个 A 列表,其内容使用添加\addcontentsline{A}{mycounter}{\protect\numberline{\themycounter}...}。现在我想要一个共享计数器的 B 列表mycounter。我有\newlistof{listofB}{B}{List of Bs}\newlistentry{mycounter}{B}{0}使用几个失败Command ... already defined。如果没有它,使用\addcontentsline{B}{mycounter}{...}两个都列表为空。我做错了什么?

答案1

利用该xassoccnt包可以耦合多个计数器,也就是说,如果其中一个计数器是阶梯式的,那么其他计数器也是阶梯式的。

用某个“任意”名称声明一个计数器组并将相关的计数器分配给它们。

使用相同的计数器是不可能的,因为\newlistof它需要一个不存在的计数器,foo并且会根据计数器名称生成一堆命令。

\documentclass{article}

\usepackage{tocloft}
\usepackage{xassoccnt}

\usepackage{blindtext}


\newcommand{\listoffooname}{List of foo environments}
\newcommand{\listoffoobarname}{List of foobar environments}

\newlistof[section]{foo}{foo}{\listoffooname}
\newlistof[section]{foobar}{foobar}{\listoffoobarname}

\DeclareCoupledCountersGroup{foofoobar}
\DeclareCoupledCounters[name=foofoobar]{foo,foobar}


% Dummy usage of the counter and generating a 'ToC' entry
\newenvironment{foo}[1]{%
  \refstepcounter{foo}
  \par\noindent\textbf{Foo \thefoo. #1}
  \addcontentsline{foo}{foo}{\protect\numberline{\thefoo} #1}\par%
}{\hrule}

\newenvironment{foobar}[1]{%
  \refstepcounter{foobar}
  \par\noindent\textbf{Foobar \thefoobar. #1}
  \addcontentsline{foobar}{foobar}{\protect\numberline{\thefoobar} #1}\par%
}{\hrule}



\begin{document}
\listoffoo
\listoffoobar


\section{Where foo starts}

\begin{foo}{A nice foo}

\blindtext[2]
\end{foo}

\begin{foobar}{A nice foobar}

\blindtext[2]
\end{foobar}


\begin{foo}{A nice foo again}

\blindtext[2]
\end{foo}

\begin{foo}{A nice foo again}

\blindtext[2]
\end{foo}

\begin{foobar}{A nice foobar again}

\blindtext[2]
\end{foobar}




\section{Where foo ends}

\begin{foo}{Another nice foo too}

\blindtext[1]
\end{foo}

\begin{foobar}{Another nice foobar}

\blindtext[2]
\end{foobar}




\end{document}

在此处输入图片描述

相关内容