Tagged Questions
4
votes
1answer
48 views
Suppressing line break in enumerate environment
I'm using the gather environment within the enumerate environment. After creating an item/before entering the gather environment, LaTeX adds a linebreak which I don't like.
\begin{enumerate}[(a)]
...
5
votes
1answer
374 views
Equations inside enumerate aligned on item's number
If I type
\begin{enumerate}
\item
\begin{align*}
eqn 1
eqn 2
\end{align*}
\end{enumerate}
the label will appear on the first lines and the equations will ...
3
votes
2answers
1k views
Enumerate inside align
How can I get an enumerate inside an align environment? I want something like this:
%...
\begin{enumerate}
\item test123
\begin{align*}
\item x^2 & \text{ bla}\\
\item x^3 & \text{ bla2}\\
...
6
votes
6answers
978 views
An enumeration of equations with aligned equal signs
I'd like to have something like the following:
\begin{enumerate}
\item $1 + 1 = 2$
\item $1 = 2 - 1$
\end{enumerate}
The thing is, I'd also like the equals signs to be aligned. But I'd like the ...
3
votes
2answers
640 views
Force aligned equation (all the way) to the left?
How do I force the following aligned output all the way to the upper left (right next to the enumerated list item)? I still want the 2nd and 3rd lines to be aligned with it's above equal sign.
...
8
votes
2answers
2k views
Mix align and enumerate
Is it possible to mix align* and enumerate, for example I want to TeX something like this (item a) and d), b) and e) and c) and f) should be aligned)
a) x^2 + y^2 = 1 b) a + b = c c) r-x = y+z
d) f ...
10
votes
5answers
2k views
Vertical alignment of align* in enumerate
Related (but not the same):
Align number from enumerate with equation
Displaying an equation in a list
Earlier today I asked a question about aligning equations in an enumerate environment ...