pdfLatex 中的 Times New Roman 字体

pdfLatex 中的 Times New Roman 字体

我需要使用 Times New Roman 字体设置文档的主字体。但我只找到了一个解决方案,即使用 xelatex 编译文档。但我的文档从第一次使用 pdflatex 打字开始就构建,因此当我将引擎切换到 xelatex 时,我发现了很多错误。而且我无法立即修复该错误。所以我需要找到解决方案,在 pdfLatex 中将字体设置为 Times New Roman。

答案1

如果您正在使用pdflatex,您可以尝试在序言中设置:

\usepackage[T1]{fontenc}
\usepackage[utf8]{inputenc}
\usepackage{mathptmx}

类似这样的情况将是 MWE,您将获得 Times New Roman 作为整个文档的字体:

\documentclass{article}
\usepackage[T1]{fontenc}
\usepackage[utf8]{inputenc}
\usepackage{mathptmx}

\begin{document}

Hello.  This is in Times New Roman font.

\end{document}

相关内容