bibtex 未编译 natbib 期刊风格

bibtex 未编译 natbib 期刊风格

我正在尝试使用以下模板对于期刊文章,在示例中他们使用 natbib 作为参考,并且还提供以下引用样式:模型2-名称.bst以下是我正在尝试的 MWE,但毫无进展。

%% This is file `elsarticle-template-2-harv.tex',
%%
%% Copyright 2009 Elsevier Ltd
%%
%% This file is part of the 'Elsarticle Bundle'.
%% ---------------------------------------------
%%
%% It may be distributed under the conditions of the LaTeX Project Public
%% License, either version 1.2 of this license or (at your option) any
%% later version.  The latest version of this license is in
%%    http://www.latex-project.org/lppl.txt
%% and version 1.2 or later is part of all distributions of LaTeX
%% version 1999/12/01 or later.
%%
%% The list of all files belonging to the 'Elsarticle Bundle' is
%% given in the file `manifest.txt'.
%%
%% Template article for Elsevier's document class `elsarticle'
%% with harvard style bibliographic references
%%
%% $Id: elsarticle-template-2-harv.tex 155 2009-10-08 05:35:05Z rishi $
%% $URL: http://lenova.river-valley.com/svn/elsbst/trunk/elsarticle-template-2-harv.tex $
%%
\documentclass[preprint,authoryear,12pt]{elsarticle}


\journal{Medical Image Analysis}

\usepackage{filecontents}
\begin{filecontents}{\jobname.bib}
@misc{A01,
    author = {Author, A. and Buthor, B. and Cuthor, C.},
    year = {2001},
    title = {First Article Title Apha}
}
@misc{A02,
    author = {Author, A. and Buthor, B. and Cuthor, C.},
    year = {2002},
    title = {Second Article Title  Beta }
}
\end{filecontents}

\begin{document}

\begin{frontmatter}
\title{Some Title}

%% use optional labels to link authors explicitly to addresses:
\author[label1,label2]{First Author}
\author[label1]{Second Author}
\author[label2]{Third Author}
\address[label1]{first University Name}
\address[label2]{Second Univeristy Name}


\begin{abstract}
Some workds about this work

\end{abstract}

\begin{keyword}
keyword \sep keyword
\end{keyword}

\end{frontmatter}

% \linenumbers

%% main text
\section{First Section}
bla bla bla bla \cite{A01}

\bibliographystyle{model2-names}
%\bibliographystyle{plain}
\bibliography{\jobname.bib}

\end{document}

%%
%% End of file `elsarticle-template-2-harv.tex'.

如果我使用他们的风格,Bibtex 就会崩溃。

Process started

This is BibTeX, Version 0.99d (TeX Live 2013) The top-level auxiliary file: elsarticle-template-2-harv.aux I couldn't open style file model2-names.bst ---line 3 of file elsarticle-template-2-harv.aux : \bibstyle{model2-names : } I'm skipping whatever remains of this command I found no style file---while reading file elsarticle-template-2-harv.aux (There were 2 error messages)

Process exited with error(s)

当切换注释以禁用 model2-names 样式并激活普通样式时,它会通过 bibtex,但是在编译 latex 时它会抱怨,因为它在参考文献中找不到年份标签。

! Package natbib Error: Bibliography not compatible with author-year citations.

相关内容