使用 WileyNJD-v2[AMA,STIX1COL] 模板进行引文处理时出现额外符号

使用 WileyNJD-v2[AMA,STIX1COL] 模板进行引文处理时出现额外符号

我正在尝试从以下文档生成 pdf LaTeX

主文本

    \documentclass[AMA,STIX1COL]{WileyNJD-v2}
    \usepackage[english]{babel} 
    \begin{document} 

    \cite{cite0001}. 

    \bibliography{Bibliography} 

    \end{document}

参考书目.bib

    @article{cite0001,
      title={Analysis of non-orthogonal multiple access for 5G},
      author={Wang, Yingmin and Ren, Bin and Sun, Shaohui and Kang, Shaoli and Yue, Xinwei},
      journal={China Communications},
      volume={13},
      number={2},
      pages={52--66},
      year={2016},
      publisher={IEEE}
    }

我使用以下命令执行 pdflatex 和 bibtex:

  1. pdflatex Main.tex // 生成 init Main.aux
  2. bibtex Main //生成Main.bbl
  3. pdflatex Main.tex // 使用 bibitems 生成 Main.aux
  4. pdflatex Main.tex // 生成最终的 pdf

前三步顺利完成,但第四步出现错误:

! Extra }, or forgotten \endgroup.
<argument> ...e ,\NAT@spacechar \fi \NAT@@close }}
                                                  
l.26 ...on text and some citation: \cite{cite0001}
                                                  .
? 
! Emergency stop.
<argument> ...e ,\NAT@spacechar \fi \NAT@@close }}
                                                  
l.26 ...on text and some citation: \cite{cite0001}
                                                  .
End of file on the terminal!

它适用于其他风格,例如,\documentclass[AMS,STIX1COL]{WileyNJD-v2}

相关内容