所以,問題很簡單:
$\min_{\begin{array}{c}
x\\
y
\end{array}}f$
如何調整兩個下標之間的間距?
答案1
使用stackengine
堆疊,可以設定垂直間隙距離。如果堆疊元素的寬度不同,也可以設定不同的水平對齊方式(預設居中)。
此外,與使用 不同array
,下標的深度與\min_x
最後一項所示相容。
\documentclass{article}
\usepackage{stackengine}
\stackMath
\begin{document}
\
$\min_{\stackunder[6pt]{\scriptstyle x}{\scriptstyle y}}f\quad
\min_{\stackunder[2pt]{\scriptstyle x}{\scriptstyle y}}f\quad
\min_x
$
\end{document}
答案2
我想說的是埃桑克斯現在刪除的評論\substack
是最傳統的。只需要amsmath
且寫起來比較短
\[
min_{\substack{i,j \\ j<i }} ....
\]