我正在使用 biblatex-chicago 来格式化我的论文,除了一个特殊问题外,一切都运行良好。我的参考书目条目都是双倍行距,而不是单倍行距,这是我需要的格式。我正在使用 XeLaTeX(如果有帮助的话)和 biblatex-chicago authordate 格式。
以下是我现在收到的输出示例:
我真的很想摆脱行之间的多余空格,并使间距看起来与此示例完全一样:
我需要在序言中添加一些内容来实现这一点吗?我查看了 BibLaTeX 和 BibLaTeX-chicago 手册,除了可能\bibitemsep.
提前非常感谢您,如果您需要更多信息,请告诉我。
编辑:这是我根据学校的要求使用的 .cls 文件:论文目录——他们还要求我们使用自定义的 .sty,ufenumerate.sty
以下是 MWE:
\documentclass[12pt,dvipdfmx,final,CPage]{ufthesis}
\usepackage[dvipdfmx]{graphicx}
\usepackage{url}
\usepackage[letterpaper,hmargin=1in,vmargin=1in]{geometry}
\usepackage{lscape}
\usepackage{hanging}
\usepackage{setspace}
\usepackage{ufenumerate}
\usepackage[format=hang,justification=raggedright,singlelinecheck=0,labelsep=period]{caption}
\usepackage{fontspec}
\usepackage[authordate,backend=biber]{biblatex-chicago}
\usepackage[autostyle=true,english=american]{csquotes}
\addbibresource{biblatex-examples.bib}
\usepackage{hypernat}
\usepackage[dvipdfmx,hyperfootnotes=false]{hyperref}
\hypersetup{colorlinks=true,linkcolor=blue,anchorcolor=blue,citecolor=blue,filecolor=blue,urlcolor=blue,bookmarksnumbered=true,pdfview=FitB}
\renewcommand{\topfraction}{0.85}
\renewcommand{\textfraction}{0.1}
\renewcommand{\floatpagefraction}{0.75}
\begin{document}
As\footcite[See][]{knuth:ct:a,knuth:ct:b} was discovered \textcite[210]{cicero} and \textcite[210]{wilde} \parencite[210]{cicero} and \cite[210]{wilde}.
\textcite{wilde,cicero} vs \parencite{wilde,cicero}.\footcite{wilde}
\textcite{baez/article,wilde,cicero} vs \parencite{baez/article,wilde,cicero}.
\printbibliography[title=REFERENCES]
\end{document}
我确实尝试了 {\singlespacing\printbibliography} 命令,但它没有改变任何东西。希望这些额外的信息能有所帮助。
编辑:即使按照您的建议缩小 MWE,问题仍然存在。我需要为我的 .cls 使用许多这些选项,因此删除其中任何一个都不现实。我试图删除最糟糕的垃圾,因为那里肯定有一些。
答案1
根据上述 jon 的评论,
\setboolean{SetDSpace}{false}
使用我的自定义 .cls,将双倍行距改为单倍行距,并将\setboolean{SetDSpace}{true}
恢复双倍行距。
感谢大家的帮助!