变量正下方的下标

变量正下方的下标

$x_{max}(n)$看起来不太好,因为max占用了太多的水平空间,而且n太过分了。写这样的内容有什么好的方法吗?

答案1

您可以使用内置的 \! 表示负空间(固定量),或者使用带有负水平参数的 \rule,例如

\documentclass[12pt]{article}
\parindent 0in 
\begin{document}
$x_{\!max}\!(n)$  versus\\
$x_{\rule{-.2ex}{0ex}max}\rule{-.1ex}{0ex}(n)$  versus\\
$x_{max}(n)$
\end{document}

相关内容