Multibib:如何从特定数字启动参考计数器?

Multibib:如何从特定数字启动参考计数器?

我正在使用该multibib包,并且想从一个特定的数字(例如 10)开始编号,而不是默认的 1。如何为该类实现这一点article

答案1

\let\oldthebibliography=\thebibliography
\renewenvironment{thebibliography}[1]{%
   \oldthebibliography{#1}%
   \setcounter{enumiv}{10}%
}

相关内容