如何在 \documentclass[]{a0poster} 中设置 addtocounter{\@listctr}{}

如何在 \documentclass[]{a0poster} 中设置 addtocounter{\@listctr}{}

2

我知道之前有一个关于更改书目起始编号但我的问题是我已经使用过代码

 \makeatletter
 \addtocounter{\@listctr}{4}
 \makeatother

然而它在 \documentclass[]{a0poster} 中不起作用。

主要文本

\documentclass[portrait,a0b,final]{a0poster}
\usepackage{type1cm} 
 \usepackage{lmodern} 
 \usepackage[T5]{fontenc}

  \begin{document}

  \begingroup
  \renewcommand{\section}[2]{}
  \begin{thebibliography}{99}
     \bibitem{JM}
         J.M. 
     \bibtem{CR}
         C.R
    \end{thebibliography}
    \endgroup}

   \begingroup
  \renewcommand{\section}[2]{}
 \begin{thebibliography}{99}

 \makeatletter
\addtocounter{\@listctr}{2}
 \makeatother

    \bibitem{JJ}
       J.J
    \bibtem{CA}
        C.A
     \end{thebibliography}
      \endgroup}

     \end{document}

有人能帮帮我吗?谢谢!

相关内容