Biometrika 期刊样式文件与 TeXLive-2020 不兼容

Biometrika 期刊样式文件与 TeXLive-2020 不兼容

我无法在 biometrika.zip 中编译 styleguide.tex(请参阅https://academic.oup.com/biomet/pages/General_Instructions)。

这是一个导致相同错误消息的 MWE,尽管我还不确定我没有把孩子和洗澡水一起倒掉。

\documentclass{article}
\RequirePackage[thmmarks]{ntheorem}

\makeatletter
\def\arabic#1{{\rm\expandafter\@arabic\csname c@#1\endcsname}}
\theoremnumbering{arabic}
\newtheorem{definition}{Definition}
\makeatother

\begin{document}

\begin{definition}
This is a definition.
\end{definition}

\end{document}

以下是输出pdflatex

% pdflatex styleguide
This is pdfTeX, Version 3.14159265-2.6-1.40.21 (TeX Live 2020) (preloaded format=pdflatex)
 restricted \write18 enabled.
entering extended mode
(./styleguide.tex
LaTeX2e <2020-02-02> patch level 5
L3 programming layer <2020-03-06>
(/usr/local/texlive/2020/texmf-dist/tex/latex/base/article.cls
Document Class: article 2019/12/20 v1.4l Standard LaTeX document class
(/usr/local/texlive/2020/texmf-dist/tex/latex/base/size10.clo)) (./ntheorem.sty

Style `ntheorem', Version 1.24 <2004/09/20>
) (/usr/local/texlive/2020/texmf-dist/tex/latex/l3backend/l3backend-pdfmode.def
) (./styleguide.aux)
! Use of \@item doesn't match its definition.
\update@series@target@value #1->\def \reserved@a {
                                                  #1}\ifx \target@meta@famil...
l.13 T
      his is a definition.
? q
OK, entering \batchmode     

答案1

该类biometrika文件至少犯了三个严重错误:

  1. \rm到处使用,尽管该命令已被弃用 25 年了(好吧,根据发布日期是 14 年,但无论如何这已经很长了);

  2. 它重新定义了\document,这甚至更糟糕;

  3. 它确实如此\def\arabic#1{{\rm\expandafter\@arabic\csname c@#1\endcsname}},但无法在公共网站上发表评论。

确实,任何 LaTeX 程序员都应该避免出现第 3 个错误。关于第 2 个错误,该类的目的似乎只是为了删除

  \ifx\normalsfcodes\@empty
    \ifnum\sfcode`\.=\@m
      \let\normalsfcodes\frenchspacing
    \else
      \let\normalsfcodes\nonfrenchspacing
    \fi
  \fi
  \ifx\document@default@language\m@ne
    \chardef\document@default@language\language
  \fi

(通过 TeX Live 2007 检查latex.ltx),所以没有任何理由这样做。

如何修复?

这是一个合适的前言,它成为\rm一个无操作,因此文档中所有明确出现的命令都必须用正确的命令替换(\mathrm在数学模式下)。

%%% fix the plain theorem style to have numbers upright
\RequirePackage[thmmarks]{ntheorem}
\makeatletter
\renewtheoremstyle{plain} 
  {\item[\hskip\labelsep \theorem@headerfont ##1\ \textup{##2}\theorem@separator]} 
  {\item[\hskip\labelsep \theorem@headerfont ##1\ \textup{##2}\ (##3)\theorem@separator]}
\makeatother

%%% save \document and \arabic to be reinstated after loading the class
\let\latexdocument\document
\let\latexarabic\arabic

%%% load the class (use the option you need)
\documentclass[manuscript]{biometrika}
%\documentclass[lineno]{biometrika}

%%% reinstate the original \document and \arabic
\let\document\latexdocument
\let\arabic\latexarabic

%%% make \rm into a no-op
\def\rm{}

然后可以继续处理文档所需的其他包以及文档正文。

请注意,该类的作者知道关于\renewtheoremstyle

答案2

注意

\documentclass{article}
\RequirePackage[thmmarks]{ntheorem}
\newtheorem{definition}{Definition}
\begin{document}
\begin{definition}
This is a definition.
\end{definition}
\end{document}

不会引发任何问题。看来他们正试图以非标准方式使用 ntheorem。

相关内容