mathptmx 和 Times New Roman 创建的输出有多相似?

mathptmx 和 Times New Roman 创建的输出有多相似?

和 Word 中的 Times New Roman输出结果有多相似mathptmx?Times New Roman 是大学论文所需的字体类型(无评论)... 两者之间有很大区别吗?

我已经检查过 unsing lipsum,它们看起来难以区分。是否有特定的角色或情况使它们明显不同?

答案1

这是我从以下输入(使用 XeLaTeX 编译)中得到的结果;它们都是我机器上拥有的 Times 类字体。每一项的第四行显示了字体的内部名称,因此可以看出它们都是不同的。

\documentclass{article}
\usepackage{fontspec}

\newcommand\alphabet{ABCDEFGHIJKLMNOPQRSTUVWXYZ\\
abcdefghijklmnopqrstuvwxyz 0123456789\\
\expandafter\texttt\expandafter{\fontname\font}}

\begin{document}
\begin{itemize}
\fontspec{Times}
\item Times\\\alphabet

\fontspec{Times New Roman}
\item Times New Roman\\\alphabet

\fontencoding{OT1}\fontfamily{ptm}\selectfont
\item Mathptmx\\\alphabet

\fontencoding{OT1}\fontfamily{ntxr}\selectfont
\item NewTX\\\alphabet

\end{itemize}
\end{document}

你能发现任何不同吗?

在此处输入图片描述

答案2

除非你正在做大量的数学运算...它们对于作者来说是一样的。然而,Mathptmx 加载了 Times 数学字体,而 Times New Roman 字体只使用 Computer Modern 数学字体。如果你追求统一性 - 我推荐 Mathptmx 包,因为它就是为此目的而制作的。

相关内容