mn2e 书目中缺少标题且页面显示不正确

mn2e 书目中缺少标题且页面显示不正确

我的文件中的 @article 条目.bib在生成的 .pdf 中无法正确显示。“title”丢失,并且只显示页面的第一个条目。我mn2e在 中使用了书目样式\documentclass [12pt,a4]{book}。下面是示例.bib文件条目和 中的输出.pdf

@article{langhorne,
title={Motor recovery after stroke: a systematic review},
author={P Langhorne and F Coupar and A Pollock},
journal="Lancet neurology",
volume={8},
number={8},
pages={741-754},
year={2009} }

输出:

Langhorne P., Coupar F., Pollock A., 2009, Lancet neurology, 8, 741

任何帮助均感激不尽。

答案1

我猜你正在使用这里的 bst 文件:http://www.mpe.mpg.de/~williams/mn2ebst/

与此链接相关的条目类型@article不支持标题。因此输出mn2e是正确的。

然而,正如上述网站所建议的,您应该使用biblatex

\documentclass [12pt,a4]{book}
\usepackage{natbib}
\usepackage{filecontents}
\begin{filecontents}{\jobname.bib}
@article{langhorne,
 title={Motor recovery after stroke: a systematic review},
 author={P Langhorne and F Coupar and A Pollock},
 journal="Lancet neurology",
 volume={8},
 number={8},
 pages={741-754},
 year={2009} 
}
\end{filecontents}
\begin{document}
\cite{langhorne}

\bibliographystyle{mn2e}
\bibliography{\jobname}

\end{document}

相关内容