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,

請注意,我已刪除“反斜線”來糾正它

相關內容