我试图用乳胶写这个
但我不知道如何在中间插入箭头,并在其下方和上方写上表达式。
答案1
\substack
与以下产品一起使用\xrightarrow
:
\documentclass{article}
\usepackage{amsmath}
\begin{document}
\[
\begin{pmatrix}
1 & 2 & 3 \\
4 & 5 & 6 \\
7 & 8 & 9
\end{pmatrix}
\xrightarrow
[% below
\substack{a+cx+x^2\\s+x}
]
{% above
\substack{a+cx+x^2\\s+x}
}
\begin{pmatrix}
1 & 2 & 3 \\
4 & 5 & 6 \\
7 & 8 & 9
\end{pmatrix}
\]
\end{document}
答案2
这是普通的 tex,但更接近您想要的,如果您真的想要它而不是上面更好的版本。
$$
{{\atop\qquad}\atop\left(\matrix{
a&b&c\cr
a&b&c\cr
a&b&c\cr
}\right)}
{{x\atop y}\atop\overrightarrow{\matrix{\qquad a\qquad\cr b\cr}}}
{{\atop\qquad}\atop\left(\matrix{
a&b&c\cr
a&b&c\cr
a&b&c\cr
}\right)
}
$$
\vfill\bye