Natbib Newblock Informs3 文档类出现未定义错误

Natbib Newblock Informs3 文档类出现未定义错误

我正在尝试向使用 INFORMS3 文档类的期刊提交一篇文章。我使用 BibDesk 生成 BIB 文件,使用 TexShop 编译源文件。以下是 TEX 文件,一个最小(非)工作示例:

% LaTeX Article Template
\documentclass[moor]{informs3}
\usepackage{latexsym,amscd}
\usepackage[mathscr]{euscript}
\usepackage{tabstackengine}
\usepackage{mathtools}
\usepackage[round]{natbib}

\stackMath

\newcolumntype{C}[1]{>{\centering\arraybackslash$}m{#1}<{$}}
\newlength{\mycolwd}                                         % array column width
\settowidth{\mycolwd}{$-\frac{3}{4}$}% "width" of $e^{-\frac{i}{\hbar}|A|t$; largest element in array

%\smartqed
%\newcommand{\argmax}{\operatornamewithlimits{argmax}}

\setlength{\jot}{.2in}
% Set the beginning of a LaTeX document
\newtheorem{proposition}{Proposition}
\newtheorem{lemma}{Lemma}
\newtheorem{theorem}{Theorem}
\newtheorem{corollary}{Corollary}
\newtheorem{definition}{Definition}
%\newtheorem{proof}{Proof}

\begin{document}

\RUNAUTHOR{X}
\RUNTITLE{X}
\TITLE{X}
\AUTHOR{X}
\ABSTRACT{
Sample
}
\KEYWORDS{
Sample
}
\maketitle

\section{Introduction}

There have been a number of alternative proofs of this result offered over the years; e.g. \cite{Spinetto:1974aa}, \cite{Charnes:1967aa}, and the methods employed have turned out to be of almost as much interest as the result itself. For example,  

\bibliographystyle{informs2014}
\bibliography{BalancedSetsELSArticleBibTex}{}

\end{document}

在 TexShop 中,我可以使用 Latex 编译一次,然后使用 BibTex 编译两次,没有错误。但是,当我再次使用 Latex 进行编译时,出现以下错误:

Package natbib Warning: Citation 'Spinetto:1974aa' on page 2 undefined on input line 43

Package natbib Warning: Citation 'Charnes:1967aa' on page 2 undefined on input line 43.

(./BibTexTest.bbl

./BibTexTest.bbl:1: LaTeX Error: \newblock undefined.

...

l.1 \begin{the bibliography}{2}

这是 bbl 文件

\begin{thebibliography}{2}
\providecommand{\natexlab}[1]{#1}
\providecommand{\url}[1]{\texttt{#1}}
\providecommand{\urlprefix}{URL }

\bibitem[{Charnes \protect\BIBand{} Kortanek(1967)}]{Charnes:1967aa}
Charnes A, Kortanek K (1967) On balanced sets, cores and linear programming.
  \emph{Cahiers du Centre d'Etudes de Recherche Operationelle} 9:32--43.

\bibitem[{Spinetto(1974)}]{Spinetto:1974aa}
Spinetto R (1974) The geometry of solution concepts for {\it n}-person
  cooperative games. \emph{Manage Sci} 20:1292--1299.

\end{thebibliography}

我已经束手无策了。使用 ectaart 或 svjour3 或 elsarticle 类格式化论文和参考书目没有问题,但我需要它(当然)用于 INFORMS3,而且在我完成这最后一部分之前我无法提交。

任何想法或指示都将受到赞赏。

编辑:我刚刚在 Google 群组中看到一个建议,它神奇地解决了这个问题(或者至少允许生成参考文献,这是我需要提交的):在 TEX 文件的底部,就在 \bibliographystyle 之前,我添加了以下行:

\newcommand{\newblock}{}

答案1

我认为应该是\def\newblock{\ },管理科学模板具有以下定义:

\usepackage{natbib}
\bibpunct[, ]{(}{)}{,}{a}{}{,}%
\def\bibfont{\small}%
\def\bibsep{\smallskipamount}%
\def\bibhang{24pt}%
\def\newblock{\ }%
\def\BIBand{and}%

答案2

只是为了未来用户的利益:我遇到了类似的问题,并在我的 .bib 条目中发现了一个不必要的“反斜杠”符号。

错误:

\newblock 2-way \FSI fails during first time step — {ANSYS} learning forum,

更正:

\newblock 2-way FSI fails during first time step — {ANSYS} learning forum,

请注意,我已删除“反斜杠”以更正它

相关内容