提问于:
浏览数:
1446
## 编译环境
操作系统
* [x ] Windows 7/8/10
* [ ] macOS
* [ ] Linux
`若需勾选,请把[ ]改成[x]`
Tex发行版
* [ x] TexLive `年份`
* [] MikTeX `版本号`
* [ ] CTeX
`若需勾选,请把[ ]改成[x]`
## 我的问题
老师, 你好
\newcounter{Citctr}
\newsavebox{\Citename}
\newenvironment{es}[1]
{%begin part,每一次碰到newenvironment{Citation}都会执行
\sbox\Citename{\emph{#1}}%暂时保存#1到\Citename,在\end{Citation}时需要用到
\stepcounter{Citctr}
\begin{description}
\item[$\clubsuit$考点 \arabic{Citctr}~~]
}
{%end part
\hspace*{\fill}\nolinebreak[3]
%\hspace*{\fill}%如果发生了断行,此设置保证\Citation是居右的。
\finalhyphendemerits=0
%\usebox{\Citename}%是begin{Citation}时保存起来的
\end{description}
}
\newcounter{Cit}
%\newsavebox{\Citename}
\newenvironment{vt}[1]
{%begin part,每一次碰到newenvironment{Citation}都会执行
% \sbox\Citename{\emph{#1}}%暂时保存#1到\Citename,在\end{Citation}时需要用到
\stepcounter{Cit}
\begin{description}
\item[$\clubsuit$变式 \arabic{Cit}~~]
}
{%end part
\hspace*{\fill}\nolinebreak[3]
%\hspace*{\fill}%如果发生了断行,此设置保证\Citation是居右的。
\finalhyphendemerits=0
%\usebox{\Citename}%是begin{Citation}时保存起来的
\end{description}
}
如何让下边的编号随着上边的编号改变?