在使用 lucida 字體時,我對基數或根符號的水平線高度有很大的問題。有時
\[ \sqrt[x^2 + x} \]
結果還不錯,但例如,在分數中
\[ \frac{x^2 + x}{x^2 + x} \]
,指數「2」實際上會黏在水平基數線上。我嘗試使用垂直支柱來解決這個問題
$\newcommand{\S}{\rule[0pt]{0pt}{1.6 ex}}$
及其變體並寫
\[ \frac{ \sqrt{\S x^2 + x} }{ \sqrt{\S x^2 + x} } \]
但這沒有幫助。有人有更好的想法嗎?
答案1
使用 Lucida Math 字體(對於pdflatex
),這是我從以下程式碼中得到的結果
\documentclass{article}
\usepackage{amsmath}
\usepackage{lucimatx}
\begin{document}
\[ \frac{ \sqrt{x^2 + x} }{ \sqrt{x^2 + x} } \]
\[ \frac{ \sqrt{\mathstrut x^{2} + x} }{ \sqrt{x^{\mathstrut 2} + x} } \]
\end{document}
我沒有發現第一個顯示器特別擠在一起;當以低解析度(即在沒有放大的螢幕上)查看結果時可能會產生這種印象。
在第二個顯示中,我建議使用兩種(手動)方法來獲得更多空間。
如果我使用 OpenType 版本,我會從
\documentclass{article}
\usepackage{amsmath}
\usepackage{unicode-math}
\setmathfont{Lucida Bright Math OT}
\begin{document}
\[ \frac{ \sqrt{x^2 + x} }{ \sqrt{x^2 + x} } \]
\end{document}
下圖顯示了也許更好的間距。