수학이 너무 길 때 정렬 환경을 사용하는 방법

수학이 너무 길 때 정렬 환경을 사용하는 방법

align다음과 같이 환경을 사용하고 싶습니다 .

\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}

출력은 "n mal differenzierbar:"두 번째 방정식 뒤에 있어야 하는 텍스트 줄이 그 아래에 있는 것과 같습니다(길이 때문에 추측됩니다). 그래서 저는 그것을 방정식 위로 옮기고 싶습니다.

미리 감사드립니다.

답변1

이와 같이?

\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}

여기에 이미지 설명을 입력하세요

아니면 이거?

\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}

여기에 이미지 설명을 입력하세요

관련 정보