答案1
像这样吗?
\documentclass{article} % or some other suitable document class
\usepackage{amsmath} % for 'alignat*' environment
\begin{document}
\begin{alignat*}{3}
\min_{x, y}\ &2x + 4y && & \min\ &9x^2 + 2y \\
\text{s.t.}\ &2x^2 - 4y \le 7 &&\qquad\iff\qquad& \text{s.t.}\ &2x^2 - 4y \le 7 \\
&3x+2y \ge 4 && & &3x+2y \ge 4
\end{alignat*}
\end{document}