如何在 LaTeX 中排版这个优化问题?

如何在 LaTeX 中排版这个优化问题?

我如何在 LaTeX 中重现优化问题的这种格式(仅“最小化 t 以...为准”部分;我在其周围添加了文本以提供上下文)?我尝试使用环境,align*但无法使其工作。要么是对齐方式错误,要么是文本和方程之间的间距太大。

在此处输入图片描述

答案1

您可以使用该optidef包。

\documentclass{article}
\usepackage{amsmath}
\usepackage[nocomma]{optidef}

\begin{document}

The \emph{epigraph form} of the standard problem \eqref{st-prob} is the problem
\begin{mini}[2]
{}{t}{}{}
\addConstraint{f_0(x)-t}{\le 0}
\addConstraint{f_i(x)}{\le0\quad}{i=1,\dots,m}
\addConstraint{h_i(x)}{=0}{i=1,\dots,p,}
\end{mini}
with variables $x\in\mathbf{R}^n$ and $t\in\mathbf{R}$.

\end{document}

在此处输入图片描述

答案2

您只需使用tabular内部环境即可equation

\documentclass{article}
\begin{document}

\noindent
The \textit{epigraph form} of the standard problem is the problem
\begin{equation}
    \begin{tabular}{rl}
        minimize & $t$\\
        subject to & $f_0(x) - t \le 0$\\
                   & $f_i(x) \le 0$, \quad $i=1, \dots, m$\\
                   & $h_i(x) = 0$,   \quad $i=1, \dots, p$,\\ 
    \end{tabular}
\end{equation}
with variables $x\in R^n$ and \dots

\end{document}

在此处输入图片描述

答案3

使用arraysplit

\documentclass{article}
\usepackage{amsmath, amssymb}

\begin{document}

With \verb+array+  \eqref{eq:array}:
    \begin{equation}\label{eq:array}
\begin{array}{rl}
    \text{minimize} & t\\
  \text{subject to} & f_0(x) - t \le 0\\
                    & f_i(x) \le 0, \quad i=1, \dots, m\\
                    & h_i(x) = 0,   \quad i=1, \dots, p,
\end{array}
    \end{equation}
with variables $x \in \mathbb{R}^n$ and $t \in \mathbb{R}$. We can easily see \dots

\medskip
or with \verb+split+ \eqref{eq:split}:
    \begin{equation}\label{eq:split}
\begin{split}
    \text{minimize} \quad   & t\\
  \text{subject to} \quad   & f_0(x) - t \le 0\\
                            & f_i(x) \le 0, \quad i=1, \dots, m\\
                            & h_i(x) = 0,   \quad i=1, \dots, p,
  \end{split}
    \end{equation}
with variables $x \in \mathbb{R}^n$ and $t \in \mathbb{R}$. We can easily see \dots

\end{document}

在此处输入图片描述

相关内容