非常に単純な線形プログラムを書く

非常に単純な線形プログラムを書く

線形計画を作成しようとしています

に似ている:

ここに画像の説明を入力してください

しかし、コードは制約とf(x)を一致させない。 ここに画像の説明を入力してください

誰か助けてくれませんか?

\documentclass{article}
\usepackage[utf8]{inputenc}

\usepackage{amsthm}
\usepackage{amsmath}
\usepackage{thmtools}       

\setlength\parindent{0pt}
\theoremstyle{definition}
\newtheorem{definition}{Definition}[section]



\theoremstyle{plain}
\declaretheorem[name=Theorem, numberwithin=section]{thm}
\declaretheorem[name=Lemma, numberwithin=section]{lem}
\declaretheorem[name=Proposition, numberwithin=section]{prop}
\declaretheorem[name=Corollary, numberwithin=section]{cor}
\declaretheorem[name=Conjecture, numberwithin=section]{conj}
\declaretheorem[name=Claim, numberwithin=section]{claim}

\theoremstyle{remark}
\newtheorem{remark}{Remark}[section]
\newtheorem{example}{Example}[section]
\usepackage{hyperref}

\begin{document}


\section{Introduction}
\begin{equation*}
    \begin{aligned}
        & \text{maximize}
        & f(x) \\
        & \text{subject to}
        &  x_1+x_2 = 8\\
        & & x_3 + x_4 = 2
    \end{aligned}
\end{equation*}


\bibliographystyle{plain}
\bibliography{references}
\end{document}

答え1

alignatさまざまな右左配置を定義するために使用できます。

ここに画像の説明を入力してください

\documentclass{article}

\usepackage{amsmath}

\begin{document}

\section{Introduction}

\begin{alignat}{2}
  & \text{maximize}   & \quad & f(x)          \nonumber \\
  & \text{subject to} &       & x_1 + x_2 = 8 \\
  &                   &       & x_3 + x_4 = 2 \nonumber
\end{alignat}

\end{document}

答え2

整列された環境の各行は & で始まります。これを削除し、各行の残りの & を &~ に置き換えます。

関連情報