重新安装较新版本的 MiKTeX 后,biblatex 创建的引文被破坏。我不知道是什么原因造成的。类似问题可以通过删除所有辅助文件来修复,但这没有帮助。
这是我的不起作用的MWE:
\documentclass{article}
\usepackage{filecontents}
\begin{filecontents*}{test.bib}
@BOOK{test,
author= {A. Author},
title = {A Title for a Book},
date = {2012-10-08}
},
@ONLINE{test2,
author = {A. Author},
title = {Some title},
url = {http://example.com},
urldate = {2013-01-08}
}
\end{filecontents*}
\usepackage[%
backend=biber,
citestyle=authoryear,
bibstyle=authoryear,
]{biblatex}
\addbibresource{test.bib}
\begin{document}
Here is a first citation: \cite{test}.
\nocite{*}
\printbibliography
\end{document}
输出如下:
以下是第一个引用:书名。
参考
作者,A. 一些标题网址:http://example.com(访问日期:2013 年 1 月 8 日)。
—书名。
我怎样才能恢复正常引用?