如何在干净的论文中设置Times Roman字体?

如何在干净的论文中设置Times Roman字体?

我正在使用 clean thesis 写论文。我想知道如何设置 Times Roman 字体而不是 sanserif 字体。

答案1

\documentclass{scrreprt}%
\usepackage{cleanthesis}
\usepackage{fontspec}
\setmainfont{TeX Gyre Termes}
\renewcommand{\helv}{\fontspec{TeX Gyre Termes}\fontsize{9}{11}\selectfont}
\renewcommand{\book}{\fontspec{TeX Gyre Termes}\fontsize{11}{13}\selectfont}
\renewcommand{\tgherosfont}{\fontspec{TeX Gyre Termes}}
\renewcommand{\thesischapterfont}{\color{ctcolorblack}\huge\fontspec{TeX Gyre Termes}}
\usepackage{blindtext}
\begin{document}
\chapter{Walzing Wombat}
\blindtext
\end{document}

相关内容