我在 Overleaf 中找到了这则不错的模板(https://www.overleaf.com/latex/templates/isw-student-thesis/xjwkfntnwrwc) 有人能帮忙更改字体吗?拜托了!
Garamond 用于正文,Helvetica 用于标题
答案1
如果你使用 进行编译pdflatex
,则必须转到iswthesis.sty
并交换第 89–95 行
从
\PassOptionsToPackage{osf,sc}{mathpazo}%
\RequirePackage{mathpazo} % Palatino with real small caps and old style figures
\usepackage{tgheros}
\linespread{1.05} % a bit more for Palatino
\PassOptionsToPackage{scaled=0.85}{DejaVuSansMon}%
\RequirePackage{tgpagella}% bera monospace font
\RequirePackage{textcomp}% declare missing symbols
到
% \PassOptionsToPackage{osf,sc}{mathpazo}%
\RequirePackage{ebgaramond-maths}
% \RequirePackage{mathpazo} % Palatino with real small caps and old style figures
\RequirePackage[scaled]{helvet}
\linespread{1.05} % a bit more for Palatino
% \PassOptionsToPackage{scaled=0.85}{DejaVuSansMon}%
\RequirePackage{tgpagella}% bera monospace font
\RequirePackage{textcomp}% declare missing symbols
您lualatex
需要查看第 101 至 103 行:
\setsansfont{Tex Gyre Heros}
\setmainfont[Numbers=OldStyle]{TeX Gyre Pagella}
\setmonofont[Scale=0.85]{DejaVu Sans Mono}
在这里您需要插入您的系统字体:
\setsansfont{Helvetica Neue}
或者您在系统中安装的 Helvetica 版本和
\setmainfont[Numbers=OldStyle]{EB Garamond}
Garamond 版本。
重新编译就完成了!