andrevdh
- 2,126
- 116
What is the formatters for beginning a new line in Latex? According to the notes two backshlashes "\\" should do the trick.
The discussion revolves around formatting new lines in LaTeX, exploring various methods and experiences with line breaks. Participants share their approaches and challenges related to this formatting issue.
Participants express differing experiences with the effectiveness of the double backslash for new lines, indicating that there is no consensus on a single method that works universally.
Some participants' claims depend on specific environments or contexts, such as using arrays or writing to TeX files, which may limit the applicability of their statements.
\begin{array}{l}
x = y \\
a^2 = b^2 \\
\mathop {\lim }\limits_{\delta x \to 0} \frac{{\delta y}}{{\delta x}} \\
\end{array}
The only time that has worked for me is when I am actually writing to a TeX file (that will be made into a PS or PDF document).andrevdh said:What is the formatters for beginning a new line in Latex? According to the notes two backshlashes "\\" should do the trick.