今年春季学期,我正在使用 Lyx 撰写我的硕士论文。我使用 Paper(标准类)作为我的文档类,并有一个 Biblatex .bib 书目数据库,我正在通过 JabRef 不断更新它。我没有在 LaTeX 序言中添加任何内容,因为我正在使用 Lyx 内置的函数来更改文档的属性。这些是我用于书目的设置(我也尝试过使用标准 Biblatex 样式格式,结果相同)。
问题是,在输出文件中,参考文献没有按字母顺序列出。它甚至不是按出现的顺序排列的,但似乎是按我将它们添加到文本中的顺序排列的。请参阅下面的输出。
我曾尝试寻找答案,但据我所知,字母顺序是“标准”顺序,而且由于我没有对参考书目样式进行任何更改,因此我期望会发生这种情况。如果这个问题已经得到解答,或者它非常基础(我完全是新手),我很抱歉 - 感谢您的帮助。
谢谢你,克拉斯
编辑:根据要求,这是 .tex 文件(不是我的实际论文文件,但我能够重现它。我根据如何创建 MWF 的说明将文档类更改为文章(标准类):
\documentclass[english]{article}
\PassOptionsToPackage{natbib=true}{biblatex}
\usepackage[T1]{fontenc}
\usepackage[latin9]{inputenc}
\usepackage{babel}
\usepackage[style=authoryear,backend=bibtex8]{biblatex}
\addbibresource{uppsats/masterthesis.bib}
\begin{document}
Text A \citep{Herzig2006} then Text B \citep{Rahm2016} then Text
C \citep{Alvesson2019} then Text D \citep{Meyer1997} then Text E
\citep{DiMaggio1983}.
\printbibliography
\end{document}
输出如下所示:
以下是 .bib 文件中的示例:
@Article{Meyer1997,
author = {John W. Meyer and Brian Rowan},
title = {Institutionalized Organizations: Formal Structure as Myth and Ceremony},
journal = {American Journal of Sociology},
year = {1977},
volume = {83},
number = {2},
url = {https://doi.org/10.1086/226550},
urldate = {2021-02-27},
}
@Article{DiMaggio1983,
author = {Paul J. DiMaggio and Walter W. Powell},
title = {The Iron Cage Revisited: Institutional Isomorphism and Collective Rationality in Organizational Fields},
journal = {American Sociological Review},
year = {1983},
volume = {48},
number = {2},
url = {https://doi.org/10.2307/2095101},
urldate = {2021-02-28},
}
@InBook{Herzig2006,
author = {Christian Herzig and Stefan Schaltegger},
title = {Corporate Sustainability Reporting: An Overview},
booktitle = {Sustainability Accounting and Reporting},
year = {2006},
editor = {Stefan Schaltegger and Martin Bennett and Roger Burritt},
publisher = {Springer},
location = {Dordrecht},
chapter = {13},
pages = {301-324},
url = {https://link.springer.com/chapter/10.1007%2F978-1-4020-4974-3_1},
urldate = {2021-02-28},
}
@Article{Alvesson2019,
author = {Mats Alvesson and Andre Spicer},
title = {Neo-Institutional Theory and Organization Studies: A Mid-Life Crisis?},
journal = {Organization Studies},
year = {2019},
volume = {40},
number = {2},
pages = {199-218},
url = {https://doi.org/10.1177%2F0170840618772610},
urldate = {2021-03-01},
}
编辑 2:非常感谢您花时间检查我的问题。我的 Lyx 版本似乎不支持 Biber,这很奇怪,因为我安装的是 2.3.6.1 版,从 2.3 版开始,Lyx 应该有原生的 Biber 支持,据我所知。我现在使用的是 Ubuntu,但很快就会切换到 Mac OS,所以我必须等待,看看在 Mac 上安装新的 Lyx 是否能解决这个问题。如果问题得到解决,我将更新并希望关闭这个问题。/Claes