原文链接:LaTeX技巧885:LaTeX下使用Times New Roman字体的正确姿势
使用 fontspec
系列宏包
fontspec
系列宏包是为 XeLaTeX 和 LuaLaTeX 设计的。借由它,用户可以直接选取系统中的字体。因此,你可以准确而直接地选择 Times New Roman 而不是其他近似(在 macOS 下只能用 Times Roman 了)。这是最推荐的方法。
\documentclass{article}
\usepackage{fontspec}
\setmainfont{Times New Roman}
\usepackage{mathspec}
\setallmathfont{Times New Roman}
\begin{document}
This is the typeface Times New Roman.
Enjoy!
\end{document}