@daniel 我确实运行了biber
,版本@moewe 没有显示任何不匹配。以下是结果。
的结果\listfiles
:
\documentclass[a4paper,12pt,twoside,openright]{report}
\usepackage{times}
\usepackage{setspace}
\usepackage[top=2.5cm,bottom=2.5cm,left=3.5cm,right=2.5cm,includefoot,asymmetric]{geometry}
\usepackage[centertags]{amsmath}
\usepackage{amssymb}
\usepackage[backend=biber,authordate]{biblatex-chicago}
\newpage
%input "XBib.bib"
%\setlinespacing{1.44}
%\bibliographystyle{chicago}.
\printbibliography
%\bibliography{XBib}
\end{document}
参考文献文件
@article{glashow,
author = {Glashow, Sheldon},
title = {Partial Symmetries of Weak Interactions},
journaltitle = {Nucl.~Phys.},
date = 1961,
volume = 22,
pages = {579-588},
}
答案1
您的例子有一些缺陷:
- 没有
\begin{document}
- 您没有加载外部文件,这通常是通过
\addbibresource{ <filename>.bib}
- 您需要引用相关条目或使用
\nocite{}
按照此处的说明使用:使用 BibTeX 制作参考文献列表,但不在文档正文中引用?
根据此信息,这里有一个可以在您的机器上运行的示例(我还删除了不需要的软件包:
\documentclass[]{report}
\usepackage{filecontents}
\begin{filecontents}{biblio.bib}
@article{glashow,
author = {Glashow, Sheldon},
title = {Partial Symmetries of Weak Interactions},
journaltitle = {Nucl.~Phys.},
date = 1961,
volume = 22,
pages = {579-588},
}
\end{filecontents}
\usepackage[backend=biber,authordate]{biblatex-chicago}
\addbibresource{biblio.bib}
\begin{document}
\cite{glashow}
\printbibliography
\end{document}
结果是: