Is it possible to use the align environment while suppressing the auto \newline?
I have a problem with the following command:
\begin{lemma}
\begin{align*}
a+b &= c \\\
&=d
\end{align*}
\end{lemma}
I want the first equation a+b=c to be on the same line as Lemma but instead TeXstudio put it on the next line. I tried using aligned enviroment instead but it gave funny result.
Could anyone please suggest me how to fix the problem?
alignedwith the[t]optional argument ($\begin{aligned}[t] a&=b \\ c &= d \end{aligned}$), or to write the lemma differently. – Torbjørn T. Jul 06 '16 at 14:01