我正在撰写我的学士论文并在使用软件包时遇到了一些问题biblatex
。
我的文本中有以下一行:
\citet{Lerner.2002} look at this issue [...]
我希望它显示如下:
Lerner 和 Tirole (2002) 研究了这个问题 [...]
但是当我使用
\usepackage[style=authoryear-icomp,natbib=true,sortcites=true,block=space]{biblatex}
(我认为这是正确的选择?)我得到了标题:
Lerner 和 Tirole(“开源的一些简单经济学”)研究了这个问题 [...]
我对此真的很困惑,有人能帮忙吗?我正在使用 Texmaker 和 MiKTeX 2.9,不知道这有什么区别。
编辑:.bib 条目如下所示:
@article{Lerner.2002,
author = {Lerner, Josh and Tirole, Jean},
year = {2002},
title = {Some Simple Economics of Open Source},
pages = {197--234},
volume = {50},
number = {2},
issn = {00221821},
journal = {The Journal of Industrial Economics}
}
答案1
使用您提供的所有信息的 MWE 确实在我的计算机上产生了所需的输出,使用 Texmaker 和 MiKTeX 2.9。
您的序言中还有其他与参考书目相关的内容吗?
\documentclass{article}
\usepackage{filecontents}
\begin{filecontents}{\jobname.bib}
@article{Lerner.2002,
author = {Lerner, Josh and Tirole, Jean},
year = {2002},
title = {Some Simple Economics of Open Source},
pages = {197--234},
volume = {50},
number = {2},
issn = {00221821},
journal = {The Journal of Industrial Economics}
}
\end{filecontents}
\usepackage[
style=authoryear-icomp,
natbib=true,
sortcites=true,
block=space
]{biblatex}
\addbibresource{\jobname.bib}
\begin{document}
\citet{Lerner.2002} look at this issue [...]
\printbibliography
\end{document}