[Tex/LaTex] How to adding vertical spacing in \raggedright or \RaggedRight

line-breakingparagraphsspacing

I usually use \\, \par, \newline, etc. to add whitespace to LaTeX. However, when I use raggedRight, the pdflatex spits out a ton of messages saying "There's no line here to end." Ultimately, all vertical whitespace is removed.

My question is, is it possible to add whitespace to a raggedRight environment? If so, how? If not, what can I use to successfully justify my text to the left and maintain the whitespace as it is?

Best Answer

Instead of using \\\\, I found that using \smallskip,\medskip, \bigskip, and other commands from Lengths and when to use them works well. Along with David Carlisle's suggestion of using the optional length parameter after \\ to specify a length of vertical white-space.