Natbib Newblock Informs3 ドキュメント クラスでの未定義エラー

Natbib Newblock Informs3 ドキュメント クラスでの未定義エラー

私は INFORMS3 ドキュメント クラスを使用するジャーナルに記事を投稿しようとしています。BIB ファイルを生成には BibDesk を使用し、ソース ファイルをコンパイルするには 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 で 1 回コンパイルし、その後 BibTex で 2 回コンパイルしてもエラーは発生しません。ただし、その後再び 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{\ }、Management Science テンプレートには次の定義があるはずです。

\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,

修正のため「バックスラッシュ」を削除したことに注意してください

関連情報