答案1
相对于您在查询的屏幕截图中显示的表达式,以下解决方案 (a) 在水平维度上更紧密,(b) 在垂直维度上更不紧密。可扩展箭头也故意做得比屏幕截图中的更长。
\documentclass{article} % or some other suitable document class
\usepackage{mathtools} % for '\xRightarrow' macro and 'alignedat*' env.
\usepackage{amssymb} % for '\mathfrak' and '\mathbb' macros
\begin{document}
\[
\begin{alignedat}{4}
& \mathrm{I} &\qquad& 5x_2+6x_2=3 &\quad&
\xRightarrow{5\mathrm{I}-6\mathrm{II}} &\quad& x_1=3 \\
& \mathrm{II} && 4x_1+5x_2=2 &&
\xRightarrow{5\mathrm{II}-4\mathrm{I}} && x_2=-2
\end{alignedat}
\qquad \Longrightarrow
\mathfrak{S} =
\begin{Bmatrix}
\begin{pmatrix}
3 \\ -2
\end{pmatrix}
\end{Bmatrix}
\subseteq \mathbb{R}^2
\]
\end{document}