Eu gostaria de alinhar o + e o if um abaixo do outro, mas por algum motivo todos os ifs ficam alinhados à direita, embora eu tenha usado o &. Não entendo por que isso está acontecendo e gostaria de saber como consertar isso de forma que os ifs fiquem um sob o outro.
\documentclass[12pt]{article}
\usepackage{amsmath}
\begin{document}
\begin{equation*}
\left\{\begin{align*}
f(x) \quad &+ \quad g(x) & \text{ if } f(x)\geq 0 \text{, } g(x) \geq 0 \\
0 \quad &+ \quad 0 & \text{ if } f(x)\geq 0 \text{, } g(x) < -f(x) \\
f(x)-(-g(x)) \quad &+ \quad 0 & \text{ if } f(x)\geq 0 \text{, } -f(x) \leq g(x) < 0 \\
0 \quad &+ \quad 0 & \text{ if } f(x)<0 \text{, } g(x)< 0 \\
\end{align*}
\right.
\end{equation*}
Responder1
O primeiro, terceiro, quinto, ... &
alinham à esquerda as seguintes expressões, enquanto o segundo, quarto, sexto, ... &
alinham à direita as seguintes expressões. Sua solução aqui: Use &&
em vez &
da segunda aparição em cada linha:
\documentclass[12pt]{article}
\usepackage{amsmath}
\begin{document}
\begin{equation*}
\left\{\begin{aligned}
f(x) \quad &+ \quad g(x) && \text{ if } f(x)\geq 0 \text{, } g(x) \geq 0 \\
0 \quad &+ \quad 0 && \text{ if } f(x)\geq 0 \text{, } g(x) < -f(x) \\
f(x)-(-g(x)) \quad &+ \quad 0 && \text{ if } f(x)\geq 0 \text{, } -f(x) \leq g(x) < 0 \\
0 \quad &+ \quad 0 && \text{ if } f(x)<0 \text{, } g(x)< 0 \\
\end{aligned}\right.
\end{equation*}
\end{document}
Responder2
Não vejo razão para alinhar no sinal +, mas talvez você tenha feito isso.
\documentclass[12pt]{article}
\usepackage{amsmath}
\begin{document}
Alignment at $+$
\begin{equation*}
\begin{cases}
\begin{alignedat}{2}
f(x) &+ g(x) &\qquad& \text{if $f(x)\geq 0$, $g(x)\geq 0$} \\
0 &+ 0 &\qquad& \text{if $f(x)\geq 0$, $g(x) < -f(x)$} \\
f(x)-(-g(x)) &+ 0 &\qquad& \text{if $f(x)\geq 0$, $-f(x) \leq g(x) < 0$} \\
0 &+ 0 &\qquad& \text{if $f(x)<0$, $g(x)< 0$}
\end{alignedat}
\end{cases}
\end{equation*}
Better with no artificial alignment?
\begin{equation*}
\begin{cases}
f(x) + g(x) & \text{if $f(x)\geq 0$, $g(x)\geq 0$} \\
0 + 0 & \text{if $f(x)\geq 0$, $g(x) < -f(x)$} \\
f(x)-(-g(x)) + 0 & \text{if $f(x)\geq 0$, $-f(x) \leq g(x) < 0$} \\
0 + 0 & \text{if $f(x)<0$, $g(x)< 0$}
\end{cases}
\end{equation*}
\end{document}
A tela superior poderia ter sido gerenciada simplesmente com aligned
, mas por causa do alinhamento em +, acho melhor ter mais espaço entre as duas partes. Tente com aligned
e &&
em vez de &\qquad&
.
Responder3
Esse é o comportamento normal se você especificar pontos de alinhamento com um E comercial: ele é adicionado implicitamente no final de cada linha. Além disso, n colunas de alinhamento requerem 2n – 1 e comercial: um e comercial para introduzir cada nova coluna, exceto a primeira, e um e comercial para definir o ponto de alinhamento dentro dessa coluna.
Proponho também um código mais simples, com o empheq
pacote (que carrega amthtools
, que carrega amsmath
). Suponho que é isso que você quer:
\documentclass[12pt]{article}
\usepackage{empheq}
\begin{document}
\begin{empheq}[left=\empheqlbrace]{align*}
f(x) \quad &+ \quad g(x) &\text{ if }& f(x)\geq 0,\ g(x) \geq 0 \\
0 \quad &+ \quad 0 & \text{ if } & f(x)\geq 0 ,\ g(x) < -f(x) \\
f(x)-(-g(x)) \quad &+ \quad 0 & \text{ if } & f(x)\geq 0 ,\ -f(x) \leq g(x) < 0 \\
0 \quad &+ \quad 0 & \text{ if } & f(x)<0 ,\ g(x)< 0 \\
\end{empheq}
\end{document}
Responder4
com uso de array
:
\documentclass[12pt]{article}
\usepackage{array}
\usepackage{amsmath}
\begin{document}
\[\setlength\arraycolsep{2pt}
\left\{\begin{array}{rcl @{\qquad}r l}
f(x) & + & g(x) & \text{if } & f(x)\geq 0,\ g(x) \geq 0 \\
0 & + & 0 & \text{if } & f(x)\geq 0,\ g(x) < -f(x) \\
f(x)-(-g(x)) & + & 0 & \text{if } & f(x)\geq 0,\ -f(x) \leq g(x) < 0 \\
0 & + & 0 & \text{if } & f(x)<0 ,\ g(x)< 0 \\
\end{array}\right.
\]
\end{document}