[Tex/LaTex] Adjust line spacing after new line

line-breakingspacing

I would like to adjust the line spacing under a section when I add a new line.

 \setlength{\parskip}{}

does not work because it only changes the spaces between sections, not between newlines (\\). For example, I would like for this source to have the first two lines as they are, while the last two sentences separated by an arbitrary distance:

\documentclass{article}
%\usepackage[parfill]{parskip}

%\setlength{\parskip}{1cm} %this command does not solve the problem
\begin{document}
\section{First section}
Lorem ipsum dolor sit amet, consectetur adipiscing elit. Vestibulum sit amet nibh
convallis, interdum dui vitae, ultrices urna. \\Vestibulum lobortis, mi vitae
hendrerit pulvinar, nunc mauris dapibus dui, sed hendrerit mauris leo in magna. 
\end{document}

Could anybody please tell me how to solve this issue?

Best Answer

The markup for a paragraph break is a blank line, not \\ :

enter image description here

\documentclass{article}
\usepackage{parskip}


\begin{document}
\section{First section}
Lorem ipsum dolor sit amet, consectetur adipiscing elit. Vestibulum sit amet nibh
convallis, interdum dui vitae, ultrices urna.

Vestibulum lobortis, mi vitae
hendrerit pulvinar, nunc mauris dapibus dui, sed hendrerit mauris leo in magna. 
\end{document}
Related Question