使用,一些对象(例如)TeX Gyre Pagella Math
与其他方程式相比似乎太大了。看一看:
xelatex
\frac12
在第一行中,分子看起来好像飘走了。第二行使用大小\scriptstyle
看起来好一些,但基线偏离了。最后,最后一行中的指数看起来也偏离了。这里看起来它的位置太低了。
我对这些东西的印象是不是有点奇怪,还是说这些东西看起来就是不好看?我能以某种方式修复它吗?
梅威瑟:
\documentclass[varwidth,convert]{standalone}
\usepackage{mathtools}
\usepackage[math-style=ISO,bold-style=upright]{unicode-math}
\setmainfont[Ligatures={TeX,Common}]{TeX Gyre Pagella}
\setmathfont{TeX Gyre Pagella Math}
\begin{document}
\begin{tabular}{@{}l@{}}
This is quite ugly:\\
\multicolumn{1}{c}{
\( \displaystyle \frac12 \int x = 0.5 \int x \)
} \\
\multicolumn{1}{c}{
\( \displaystyle {\scriptstyle \frac12} \int x = 0.5 \int x \)
} \\
\multicolumn{1}{c}{
\( \displaystyle e^{\frac12 x+1} = e^{0.5 x+1} \)
}
\end{document}