O que há de errado com esse alinhamento? Recebo uma mensagem de erro ao compilá-lo. Abaixo está o código:
\documentclass{article}
\usepackage[utf8]{inputenc}
\usepackage{amsmath,amsfonts,amsthm,amssymb,mathrsfs,latexsym,paralist}
\usepackage[makeroom]{cancel}
\begin{document}
\begin{align*}
\phi(f_0) &=
\frac{\cancel{\phi(f_1)}\phi(g)}{\phi(e)}
e^{i\pi(\cancel{\theta_{21}}-\cancel{\theta_{11}})}
= \frac{\phi(f_1)^\cancel{2}}{\phi(f_2)}
e^{i\pi(\cancel{\theta_{21}}+\theta_{12}-\theta_{22}-\cancel{\theta_{11}})}\\
& \Rightarrow \frac{\phi(g)}{\phi(e)} = \frac{\phi(f_1)}{\phi(f_2)}e^{i\pi(\theta_{12}-\theta_{22})} . . . (\star)
\end{align*}
\end{document}
Este é o erro de saída no ShareLatex:
*Faltando { inserido.
\mathchoice l.194 \end{align*} Uma chave esquerda era obrigatória aqui, então coloquei uma. Você pode excluir e/ou inserir algumas correções para que eu encontre uma chave direita correspondente em breve.*
Responder1
Você não pode colocar um comando \cancel
diretamente em um sobrescrito. Você precisa colocar colchetes ao redor dele.
\documentclass{article}
\usepackage{mathtools,cancel}
\begin{document}
\begin{align*}
\phi(f_0) &= \frac{\cancel{\phi(f_1)}\phi(g)}{\phi(e)}
e^{i\pi(\cancel{\theta_{21}}-\cancel{\theta_{11}})}
= \frac{\phi(f_1)^{\cancel{2}}}{\phi(f_2)}
e^{i\pi(\cancel{\theta_{21}}+\theta_{12}-\theta_{22}-\cancel{\theta_{11}})}\\
& \Rightarrow \frac{\phi(g)}{\phi(e)}
= \frac{\phi(f_1)}{\phi(f_2)}e^{i\pi(\theta_{12}-\theta_{22})} . . . (\star)
\end{align*}
\end{document}