I'm trying to align an maximization program. I searched everywhere but nothing seems work. I want to have something like this (I use '_' because space is not displayed on this forum):
________max____f(x)
_________s.t.____x<M____________(1)
_______________x>Zi_____∀Zi_____(2)
I use \begin{align}
but i keep getting something like this:
________max_f(x)
_________s.t._x<M_______________(1)
____________x>Zi________∀Zi_____(2)
or this:
________max_________ f(x)
_________s.t.________x<M________(1)
___________________x>Zi_∀Zi_____(2)
This is the code I'm using:
Code: Select all
\begin{align}
\max_{\mathcal{V}_{\Theta}^{*},\delta}
&\mathcal{V}_{\Theta}^{*}
\notag \\
\text{s.t.}
&\mathcal{V}_{\Theta}^{*} \leq \mathcal{V}_{\Theta}(\delta,\sigma_{\Psi})
&\forall \sigma_{\Psi} \in \Sigma_{\Psi} \\
&\sum_{\sigma_{\Theta} \in \Sigma_{\Theta}}{\delta(\sigma_{\Theta})}=1\\
&\delta(\sigma_{\Theta}) \in[0,1]
&\forall \sigma_{\Theta} \in \Sigma_{\Theta}
\end{align}