答案1
MTPro2 字体不提供文本字体,您必须自己提供 Times 的克隆。
newtxtext
我们可以比较数学和文本斜体 x 的高度来得到
分别。好的,让我们放大 1.0316 倍
\documentclass{article}
\usepackage[scale=1.0316]{newtxtext}
\usepackage[lite]{mtpro2}
\begin{document}
$f$\textit{f}
\sbox0{$x$}\the\ht0
\sbox0{\itshape x}\the\ht0
\end{document}
现在,文本斜体和数学斜体具有相同的高度,事实上,两者F字母在垂直尺寸上是可比的。形状并不精确,但正如 Barbara Beeton 所说,这对于数学字体来说很常见。
将圆形数学斜体 v 改为文本斜体 v 或借用 并不困难newtxmath
。我不建议这么做。
答案2
只是为了展示 Computer Modern 中文本斜体和数学之间的区别。大多数(所有?)字母的形状略有不同。
\documentclass{article}
\usepackage{xcolor}
\begin{document}
\ooalign{\hfil$b$\hfil\cr\hfil\textcolor{red}{\textit{b}}\hfil\cr}%
\ooalign{\hfil$c$\hfil\cr\hfil\textcolor{red}{\textit{c}}\hfil\cr}%
\ooalign{\hfil$g$\hfil\cr\hfil\textcolor{red}{\textit{g}}\hfil\cr}%
\ooalign{\hfil$m$\hfil\cr\hfil\textcolor{red}{\textit{m}}\hfil\cr}
\end{document}