Casos se comportando de maneira muito excêntrica

Casos se comportando de maneira muito excêntrica

Eu ficaria muito feliz se alguém pudesse me dizer por que os casos estão se comportando de maneira ridícula no código a seguir.

\begin{align}
I^*= \begin{cases} 
0, & \left(\mathbb{E}\left[\theta_c|C=1\right] < \theta_i \ \
\text{and} \ \  \mathbb{E}\left[\max\left\{\theta_i,\theta_c\right\}|C=1\right] <
\frac{c_I}{\gamma}\right) \\ 
0, & \left(\mathbb{E}\left[\theta_c|C=1\right] \geq 
\theta_i \ \ \text{and} \ \  \mathbb{E}\left[\max\left\ 
\theta_i,\theta_c\right\}|C=1\right] < \frac{c_I}{\gamma}\right) \\ 
\left[0,1\right], & \left(\mathbb{E}\left[\theta_c|C=1\right] < \theta_i \ \ 
\text{and} \ \  \mathbb{E}\left[\max\left\{\theta_i,\theta_c\right\}|C=1\right] = 
\frac{c_I} {\gamma}\right) \\ 
\left[0,1\right], & \left(\mathbb{E}\left[\theta_c|C=1\right] \geq 
\theta_i \ \ \text{and} \ \  \mathbb{E}\left[\max\left\
{\theta_i,\theta_c\right\}|C=1\right] = \frac{c_I}{\gamma}\right) \\ 
1, \left(\mathbb{E}\left[\theta_c|C=1\right] < \theta_i \ \ \text{and} \ \  
\mathbb{E}\left[\max\left\{\theta_i,\theta_c\right\}|C=1\right] > \frac{c_I}
{\gamma}\right) \\ 
1, \left(\mathbb{E}\left[\theta_c|C=1\right] \geq \theta_i \ \ 
\text{and} \ \  \mathbb{E}\left[\max\left\{\theta_i,\theta_c\right\}|C=1\right] > 
\frac{c_I}{\gamma}\right) 
\end{cases} 
\end{align}

O código fica assim: insira a descrição da imagem aqui Obrigado

Responder1

Está faltando &after 1,nas duas últimas linhas do código:

\begin{equation}
I^*= \begin{cases} 
0, & \text{if }
\mathbb{E}[\theta_c\mid C=1] < \theta_i
\text{ and }
\mathbb{E}[\max\{\theta_i,\theta_c\} \mid C=1] < \frac{c_I}{\gamma}
\\ 
0, & \text{if }
\mathbb{E}[\theta_c \mid C=1] \geq \theta_i 
\text{ and }
\mathbb{E}[\max\{\theta_i,\theta_c\} \mid C=1] < \frac{c_I}{\gamma}
\\ 
[0,1], & \mathbb{E}[\theta_c \mid C=1] < \theta_i 
\text{ and }
\mathbb{E}[\max\{\theta_i,\theta_c\} \mid C=1] = \frac{c_I}{\gamma}
\\ 
[0,1], & \text{if }
\mathbb{E}[\theta_c \mid C=1] \geq \theta_i
\text{ and }
\mathbb{E}[\max\{\theta_i,\theta_c\} \mid C=1] = \frac{c_I}{\gamma}
\\ 
1, & \text{if }
\mathbb{E}[\theta_c \mid C=1] < \theta_i
\text{ and }
\mathbb{E}[\max\{\theta_i,\theta_c\} \mid C=1] > \frac{c_I}{\gamma}
\\
1, & \text{if }
\mathbb{E}[\theta_c \mid C=1] \geq \theta_i 
\text{ and }
\mathbb{E}[\max\{\theta_i,\theta_c\} \mid C=1] > \frac{c_I}{\gamma}
\end{cases} 
\end{equation}

Observe que fiz mais algumas alterações para melhorar as coisas, ou seja, removi os parênteses externos, coloquei ifem cada linha, removi os espaços desnecessários ao redor and(e coloquei-os dentro do \text{...}, mas isso não é necessário), removi todos os espúrios \left...\righte eu alterado |para \midpara obter o espaçamento adequado.

(Espero não ter estragado nada, não posso testar o código agora.)

informação relacionada