I am writing Flashcards for the upcomming finals.
To describe the equations I use the align* environment like this:
\begin{align*}
x_+ &: \text{ Molenbruch von Enzymen, bei denen funktionelle Gruppen protoniert sind}\\
x_n &: \text{ Molenbruch von Enzymen, bei denen die Ladung mehr oder weniger ausgeglichen ist}\\
x_- &: \text{ Molenbruch von Enzymen, bei denen funktionelle Gruppen deprotoniert sind }
\end{align*}
long descriptions are going over the margin. (using a6paper)
is there any way to wrap the text within the align* environment other than this:
\begin{align*}
x_+ &: \text{ Molenbruch von Enzymen, bei denen }\\
&:\quad \text{funktionelle Gruppen protoniert sind}\\
x_n &: \text{ Molenbruch von Enzymen, bei denen}\\
&:\quad \text{die Ladung mehr oder weniger ausgeglichen ist}\\
x_- &: \text{ Molenbruch von Enzymen, bei denen}\\
&:\quad \text{funktionelle Gruppen deprotoniert sind }
\end{align*}
It should provide the same behavior like centering and stuff, just with wrapping. Centering is important to make things clearer.



{description}list to me – cgnieder Jan 13 at 16:50enumitem. (I guess by “not centered” you mean “no additional margins”?) – cgnieder Jan 13 at 17:12enumitemcould solve the problem, i'll try that. "additional margins" is what i ment, right. – Rico Jan 13 at 17:20paralistandenumitemworks fine would be great to set the left and right margins even. I tried[leftmargin=1em, rightmargin=1em]to let it look like thealign*but it didn't work out – Rico Jan 13 at 17:55