我在一份文档中写了以下等式,但它生成后看起来并不是特别整洁:
\begin{equation}
\nu = \frac{x_{max}^{sub}}{x_{min}^{host}},
\end{equation}
我需要将 \nu 和两个“x”项放大一些,以便它们的下标/上标注释有更多空间。此外,越简单越好,因为我只会在整个文档中执行一次,并且不想为方程式等定义任何排版。
谢谢
答案1
除了评论中讨论的方法之外,您还可以将上标/下标应用于\strut
,这将应用增加的垂直分隔,如上一个示例所示。
第一个例子是 OP 的构造,第二个例子\mathrm
在脚本上使用了 ,并且使用 来“解开”样式\displaystyle
。最后一个案例将脚本应用于\strut
。
我不建议尝试更改数学模式的默认\nu
大小。x
\documentclass{article}
\begin{document}
\begin{equation}
\nu = \frac{x_{max}^{sub}}{x_{min}^{host}},
\end{equation}
\begin{equation}
\nu = \frac{\displaystyle x_\mathrm{max}^\mathrm{sub}}{\displaystyle x_\mathrm{min}^\mathrm{host}},
\end{equation}
\begin{equation}
\nu = \frac{x\strut_\mathrm{max}^\mathrm{sub}}{x\strut_\mathrm{min}^\mathrm{host}},
\end{equation}
\end{document}