biblatex 的现有解决方案

biblatex 的现有解决方案

@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

您的例子有一些缺陷:

根据此信息,这里有一个可以在您的机器上运行的示例(我还删除了不需要的软件包:

\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}

结果是:

在此处输入图片描述

相关内容