
Eu quero usar o align
ambiente assim:
\begin{itemsize}
\begin{align}
{\color{purple} \mathcal{L} [f'(t)](s) = s \mathcal{L} [f(t)](s) - f(0) } \\
{\color{red} \mathcal{L} [f^{(n)}(t)](s) = s^n \mathcal{L} [f(t)](s) - s^{n-
1}f(0) - s^{n-2}f(0) - \dots - f^{n-1}(0)}
\end{align}
n mal differenzierbar:
\end{itemsize}
a saída é tal que a linha de texto "n mal differenzierbar:"
, que deveria estar atrás da segunda equação, fica abaixo dela (acho que por causa do comprimento). Então, quero movê-lo acima da equação.
Muito obrigado antecipadamente.
Responder1
Assim?
\documentclass{article}
\usepackage{amsmath}
\usepackage{xcolor}
\begin{document}
\begin{align}
{\color{purple} \mathcal{L} [f'(t)](s)\;} & {\color{purple}= s \mathcal{L} [f(t)](s) - f(0) } \\
\intertext{n mal differenzierbar:}
{\color{red} \mathcal{L} [f^{(n)}(t)](s)\;} & {\color{red}= s^n \mathcal{L} [f(t)](s) - s^{n- 1}f(0) - s^{n-2}f(0) - \dots - f^{n-1}(0) }
\end{align}
\end{document}
ou isto?
\documentclass{article}
\usepackage{amsmath}
\usepackage{xcolor}
\begin{document}
n mal differenzierbar:
\begin{align}
{\color{purple} \mathcal{L} [f'(t)](s)\;} & {\color{purple}= s \mathcal{L} [f(t)](s) - f(0) } \\
{\color{red} \mathcal{L} [f^{(n)}(t)](s)\;} & {\color{red}= s^n \mathcal{L} [f(t)](s) - s^{n- 1}f(0) - s^{n-2}f(0) - \dots - f^{n-1}(0) }
\end{align}
\end{document}