我有以下newenvironment
命令:
\newcounter{algoctr}[chapter] \setcounter{algoctr}{0}
\newenvironment{algo}[1] {
\refstepcounter{algoctr}\vspace{0.2cm}\noindent{\bf Algorithm
\arabic{chapter}.\arabic{algoctr}: #1}}{\par}
我就这样使用它
\begin{algo}{blabbing a blah}
blah
blah
\label{eq:blabbing}
\end{algo}
但是,每次我引用标签 (\ref{eq:blabbing}) 时,我都会得到一个“1”,而不是“1.1”。
有人可以让我知道我做错了什么吗?
谢谢