[Tex/LaTex] Insert Paragraph within Equation

math-mode

How to insert a paragraph inside equation. I need to be able to break lines inside the paragraph.

\documentclass{article}

\usepackage{amsmath}

\begin{document}
        \begin{align*}
            y =& C_1e^{(3+2i)x} + C_2e^{(3-2i)x} \\
                     & \left\downarrow\rule{0cm}{1.5cm}\right.\quad\text{Insert text here with line breaks}\\
            y =& e^{3t}\left(A_1\cos 2t + A_2\sin 2t\right)
            \end{align*}
\end{document}

enter image description here

Best Answer

Add a \parbox:

MWE

\documentclass{article}

\usepackage{amsmath}

\begin{document}
        \begin{align*}
            y =& C_1e^{(3+2i)x} + C_2e^{(3-2i)x} \\
                     & \left\downarrow\rule{0cm}{1.5cm}\right.\quad\text{%
            \parbox{2.5cm}{Insert text here with line breaks}}\\
            y =& e^{3t}\left(A_1\cos 2t + A_2\sin 2t\right)
            \end{align*}
\end{document}