
Ich möchte die align
Umgebung folgendermaßen nutzen:
\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}
die Ausgabe ist so, dass die Textzeile "n mal differenzierbar:"
, die hinter der zweiten Gleichung stehen sollte, darunter steht (ich vermute wegen der Länge). Deshalb möchte ich sie über die Gleichung verschieben.
Vielen Dank im Voraus.
Antwort1
So was?
\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}
oder dieses?
\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}