Spacing between paragraphs in LaTeX

  • Context: LaTeX 
  • Thread starter Thread starter Charles Link
  • Start date Start date
Join the discussion
Registration is free. Ask a follow-up in this thread, or start your own.
4 replies · 2K views
Science Advisor
Homework Helper
Insights Author
Gold Member
2025 Award
Messages
6,031
Reaction score
3,160
Perhaps up to a year ago, I used to be able to get a space between paragraphs with #" "# "\ "\ "#" "#". That no longer works with the latest Latex version. What command can I use to get a space between paragraphs?
 
  • Like
Likes   Reactions: Wrichik Basu
Physics news on Phys.org
It seems to ignore all line breaks within the LaTeX environment. You can end the LaTeX environment, add normal line breaks and begin a new LaTeX formula.
$$a=b$$
$$c=d$$
 
  • Like
Likes   Reactions: Charles Link
Wrichik Basu said:
It seems that v3 of MathJax hasn't implemented line breaks yet. See this issue: https://github.com/mathjax/MathJax/issues/2312

And it seems that this will not be fixed before next year: see this comment from the above issue.
A comment from the same person there suggested that using
\displaylines{x = a + b \\\ y = b + c} would work ##-##
$$\displaylines{x = a + b \\ y = b + c}$$ ##-## apparently it does.
 
  • Like
Likes   Reactions: Wrichik Basu
mfb said:
It seems to ignore all line breaks within the LaTeX environment. You can end the LaTeX environment, add normal line breaks and begin a new LaTeX formula.
$$a=b$$
$$c=d$$
Thanks. This is what I needed. Hitting the "Enter" button a couple of times works. :)
 
  • Like
Likes   Reactions: berkeman