答案1
答案2
我已经使用过的环境smallmatrix
:
\documentclass[a4paper,12pt]{article}
\usepackage{mathtools,amssymb}
\begin{document}
\[abc \overset{\begin{smallmatrix} a=1\\b=2\\c=3 \end{smallmatrix}}{=} c!\]
\end{document}
使用用户的建议@egreg:在 \substack 的最后一行中使用 \smash[t]{\mathstrut} 可以获得一个小的垂直间隙
\documentclass[a4paper,12pt]{article}
\usepackage{mathtools,amssymb}
\begin{document}
\[abc \overset{\begin{smallmatrix} a=1\\b=2\\\smash[t]{\mathstrut} c=3 \end{smallmatrix}}{=} c!\]
\end{document}