我修改了原始帖子,以修复我自己在 MWE 方面犯的错误。我还发现 \setotherlanguage{hebrew} 才是真正的罪魁祸首,而不是 setspace.sty。
\setotherlanguage{hebrew} 导致我的脚注文本为双倍行距,而我需要的是单倍行距。
谢谢你的耐心。
\documentclass[letterpaper,12pt]{book}
\usepackage[hmargin={1in},vmargin=1in]{geometry}
\usepackage{polyglossia}
\usepackage[backend=biber,footmarkoff]{biblatex-chicago}
\usepackage{csquotes}
\addbibresource{diss.bib}
\usepackage{setspace}
\setmainlanguage[variant=us]{english}
\setotherlanguage{hebrew}
\setmainfont{Times New Roman}
\doublespacing
\begin{document}
\chapter{Palaeographical Profile}
\section*{Introduction}
Some text here and there
\section*{Style of the Hand}
Text of various kinds.\footnote{this is a footnote that should be single space per the style guide I am following in my school. Please help. And thank you very much. Just trying to make the footnote long enough. That's all. Don't mind me.}
\end{document}
答案1
确保初始化语言前改变其他任何事情。
\documentclass[letterpaper,12pt]{book}
\usepackage[hmargin={1in},vmargin=1in]{geometry}
\usepackage{polyglossia}
\setmainlanguage[variant=us]{english}
\setotherlanguage{hebrew}
\usepackage[backend=biber,footmarkoff]{biblatex-chicago}
\usepackage{csquotes}
\addbibresource{diss.bib}
\usepackage{setspace}
\setmainfont{Times New Roman}
\doublespacing
\begin{document}
\chapter{Palaeographical Profile}
\section*{Introduction}
Some text here and there
\section*{Style of the Hand}
Text of various kinds.\footnote{this is a footnote that should be single space per the style guide I am following in my school. Please help. And thank you very much. Just trying to make the footnote long enough. That's all. Don't mind me.}
\end{document}