我想在latex中实现下面的公式。
我试过了
\begin{equation}
\begin{aligned}[c]
\underline{\mathrm{Primal}\,\,&\mathrm{problem}}
% \mathrm{Primal}\,\,&\mathrm{problem}
\\
\underset{X}{\max}\quad&\mathrm{tr}\left( \mathsf{A}X \right)
\\
\mathrm{s}.\mathrm{t}.\quad&\varphi \left( X \right) =\mathsf{B},
\\
&X\ge 0.
\end{aligned}
\end{equation}
但是,在 \underline 中使用 & 符号会出现错误。那么我该如何实现呢?
答案1
如果想要居中的话Primal problem
,gather*
是一个不错的选择。
\documentclass{article}
\usepackage{amsmath}
\begin{document}
\begin{gather*}
\text{\underline{Primal problem}} \\
\begin{aligned}
\text{maximize:} & \quad \langle A,X\rangle \\
\text{subject to:} & \quad \Phi(X) = B, \\
& \quad X \in \text{Pos}(\mathcal{X})
\end{aligned}
\end{gather*}
\end{document}