答案1
答案2
正如解释的那样这里,这应该可以做到:
\documentclass[12pt]{article}
\usepackage{mathptmx}
\usepackage[T1]{fontenc}
\begin{document}
...
\end{document}
使用 XeLaTeX,您可以使用:
\documentclass[12pt]{article}
\usepackage{fontspec}
\usepackage{polyglossia}
\setmainlanguage{german}
\setmainfont{Times New Roman}
\begin{document}
...
\end{document}
答案3
由于您没有提供 MWE,因此很难知道您的需求是什么,但一个非常简单的解决方案可能是这样的:
\documentclass{article}
\usepackage{fontspec}
\setmainfont{Times New Roman}
\begin{document}
This is a text.
\end{document}
如果满足以下条件,此方法有效:
- 您使用 LuaLaTeX 或 XeLaTeX 进行编译。
- Times New Roman 字体已安装在您的操作系统中(因此可供其他软件使用,例如网络浏览器、文字处理器等)。