Answers for "latex display math new line"

3

latex newline

\newline    or     \\
Posted by: Guest on February-12-2022
0

latex new line math

\begin{gather}
    a + b = c \\ 
    a = c - b
\end{gather}
%
With the align environment you can align equations:
%
\begin{align}
    a + b &= c \\        
        a &= c - b
\end{align}
Posted by: Guest on March-23-2022

Browse Popular Code Answers by Language