带有 turabian 格式的字体大小

带有 turabian 格式的字体大小

我正在尝试解决turabian-formatting/turabian-researchpaper包的一些格式/大小问题。我查看了.cls.sty文件,但我承认我的 TeX 知识充其量只是菜鸟级别,所以在解释幕后发生的事情时我有点不适应。

我的假设是,因为turabian-researchpaper包定义了10pt11pt12pt作为选项,所以只有这些选项可以工作(因此13pt返回默认值)。但是,这似乎也是12pt默认值(包文档支持该默认值),这就是我感到困惑的地方,因为指定时产生的12pt文本比不指定任何大小时产生的文本大得多。请参阅下面的示例文件内容,以确切了解我正在运行的内容。

是否存在一些我缺乏背景的神秘细节,可以完美解释我所看到的内容?我已确认我正在运行 2021-03-20 版本。

% This file is run with "latexmk -bibtex -pdflua test.tex"

\documentclass[turabian-researchpaper]{report}
% \documentclass[turabian-researchpaper,10pt]{report} % same as when unspecified
% \documentclass[turabian-researchpaper,11pt]{report} % slightly larger
% \documentclass[turabian-researchpaper,12pt]{report} % larger still
% \documentclass[turabian-researchpaper,13pt]{report} % back to the original size

\usepackage{turabian-formatting}
\usepackage[notes, backend=biber]{biblatex-chicago}
\usepackage[style=canadian]{csquotes}

\begin{document}
This is some sample text. This is some sample text. This is some sample text. This is some sample text. This is some sample text. This is some sample text. This is some sample text. This is some sample text. This is some sample text. This is some sample text. This is some sample text.
\end{document}

答案1

感谢 Marijn 的上述回复,我得以解决这个问题。我不明白为什么它导致了我最初问题中的行为,但至少现在我使用更新后的标记,它是一致的。 12pt 字体对我来说感觉太大了,但这是它自己的问题,可能完全是主观的。 无论如何,我试图从我在网上找到的(过时的)片段中拼凑出一些东西,这对我有利。 如果将来有人需要这个,更新的定义如下:

% This file is run with "latexmk -bibtex -pdflua test.tex"

\documentclass{turabian-researchpaper}

\usepackage[notes, backend=biber]{biblatex-chicago}
\usepackage[style=canadian]{csquotes}

\begin{document}
This is some sample text. This is some sample text. This is some sample text. This is some sample text. This is some sample text. This is some sample text. This is some sample text. This is some sample text. This is some sample text. This is some sample text. This is some sample text.
\end{document}

相关内容