LaTeX Understanding Double Line in LaTeX to Using // for Line Breaks

  • Thread starter Thread starter Bachelier
  • Start date Start date
  • Tags Tags
    Latex Line
AI Thread Summary
In LaTeX, to create line breaks, the correct command is "\\" rather than "//". The "\\" command is used to insert a line break within environments like "aligned", but it does not start a new paragraph. For paragraph breaks, users should avoid using multiple "\\" as it can lead to warnings like "underfull hbox." Instead, commands like \bigskip, \medskip, or \smallskip are recommended for creating vertical space, as they are adjustable and disappear at the end of a page. Some users experienced issues with the "\\" command not working initially, but rebooting their machines resolved the problem. Overall, the discussion emphasizes the importance of using the correct commands for formatting in LaTeX.
Bachelier
Messages
375
Reaction score
0
What is double line in ##LaTex?## I tried ##"//"## twice, but the compiler does not accept it.

The old ##" /linebreak[2] "## command does not work neither?

Thanks
 
Physics news on Phys.org
Bachelier said:
What is double line in ##LaTex?## I tried ##"//"## twice, but the compiler does not accept it.

The old ##" /linebreak[2] "## command does not work neither?

Thanks

Hi Bachelier! :smile:

Which double line do you mean in ##\LaTeX##?
Is it:
Code:
||   //   \backslash\backslash   \lVert   or   \parallel
These render as:
$$\quad || \quad // \quad \backslash\backslash \quad \lVert \quad \text{ or }\quad \parallel$$

In latex you can use \\ for a linebreak, although on this site it only works in a \begin{something} environment.
For instance:
Code:
\begin{aligned} a = b+1 \\ c = b-1 \end{aligned}
which renders as:
$$\begin{aligned} a = b+1 \\ c = b-1 \end{aligned}$$
 
Forgot to add the word "break" in my title. sorry.

Yeah I meant: "Doubleline breaks and more line breaks" to control the structure of one's document.

Thank you
 
Edgardo said:
You have to use "\\" and not "//" if you want a linebreak.
See here: http://www.personal.ceu.hu/tex/breaking.htm

That is what I meant. I was using "\\" but my compiler did not take it.
However the funny thing is that after rebooting my machine, now "\\" works for as many line breaks as I want.

Thanks for that doc. I tried "\\" but it just seems to give me a line break. It does not start a new paragraph like the website claims. \\* gives the same result.
 
I like Serena said:
Hi Bachelier! :smile:

On a different note my friends, to get line breaks (like 3 or 4) for styling the ##\LaTeX## document, is it a good modus operandi to use "\\" and "\\*"?
 
Bachelier said:
Thanks for that doc. I tried "\\" but it just seems to give me a line break. It does not start a new paragraph like the website claims. \\* gives the same result.
The website is wrong. (Given the .hu, maybe it lost something in translation from hungarian to english). The whole point of \\ is that it DOESN'T start a new paragraph (and therefore you don't get paragraph indentation, automatic extra space adjustment between paragraphs, etc).

Bachelier said:
On a different note my friends, to get line breaks (like 3 or 4) for styling the ##\LaTeX## document, is it a good modus operandi to use "\\" and "\\*"?

Probably not. I'm surprised several \\ in succession works at all. Actually I just tried it and it did work, but gave an "underfull hbox" warning. I expected to get an error message like "There's no line here to end" or something similar.

If you want one big gap, do \\[24pt] or whatever size you need.

Or better, use \bigskip \medskip or \smallskip. Those vertical spaces are "stretchy" so they adjust a bit to fill up the page correctly/ They also disappear if they happen to be at the end of a page, which is probably what you wanted.
 
AlephZero said:
Or better, use \bigskip \medskip or \smallskip. Those vertical spaces are "stretchy" so they adjust a bit to fill up the page correctly/ They also disappear if they happen to be at the end of a page, which is probably what you wanted.

Thank you ##|\mathbb{Z}_{>0}|##

BTW, what is your favorite command for paragraph breaks (i.e. to begin new paragraphs in the document)?
 

Similar threads

Replies
1
Views
2K
Replies
1
Views
2K
Replies
4
Views
2K
Replies
12
Views
3K
Replies
23
Views
4K
Replies
6
Views
1K
Replies
13
Views
2K
Replies
4
Views
1K
Back
Top