在多部分文档中全局设置字体类型

在多部分文档中全局设置字体类型

我有一个主文档,其中包含多个由\input命令调用的子文档。我想为主要文档和所有子文档全局设置 palatino 字体。是否可以在主文档上添加命令来实现此目的?

主文档的精简版本:

%Novel template 5.06in x 7.81in, facing pages
% Begin document
\documentclass[11pt,english,british,twoside,openany]{scrbook}
\usepackage{novel}% novel.sty

%Frontmatter

\begin{document}

...

\mainmatter

%The Chapters
\input{./child_docs/child_docs.tex}

\end{document}

答案1

总结讨论

添加

\usepackage{palatino}

添加到主文件之前\begin{document}将产生此效果。标准设置中的file.texinclude via中的材料的行为与在主文件中输入的行为完全相同。\input file.tex

相关内容