我的文件中的 @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}