LaTeX separates paragraphs every time you add at least one empty line between texts. Then, how paragraphs are formatted depends on you. Here's a good helpful website: How to change paragraph spacing in LaTeX.
The length name \parskip controls extra spacing between all paragraphs in the document. In standard classes, it is set to 0pt meaning no extra spacing is issued. For instance,
\setlength\parskip{6pt}
would cause LaTeX to add a distance of 6pt between all paragraphs.
If you read through the website, you will come across the name \baselineskip, which hold a distance between two baselines. Therefore, \setlength\parskip{\baselineskip} would separate paragraphs exactly by one empty line.
The macros \smallskip, \medskip, and \bigskip also add extra space in the place of issue but are meant for rather one-time usage. The amount of extra space they insert is held in three length names: \smallskipamount, \mdeskipamount and \bigskipamount. You could also use any of the names to insert \<xxx>skip between all paragraphs. For instance
\setlength\parskip{\bigskipamopunt}
would again add one empty line between all paragraphs.
Here's a small MWE to test paragraph skips:
\documentclass{article}
\usepackage{blindtext}
\setlength\parskip{\baselineskip}
\begin{document}
\Blinddocument
\end{document}
EDIT. BTW, \\ is not a correct way to separate paragraphs. Use either \par or empty lines (which are converted to \par).
For an arbitrary skip, insert \vspace{<length>} where <length> is a unit length s.a. 12pt, 1cm, 3em or 2ex etc. (*). However, this macro will work between paragraphs. In order to add skip at the beginning of a document e.g. before the title, or at the top of a new page you should use a starred version \vspace*{<length>} (thanks for pointing at details in comments).
(*) Keep in mind there are fixed and relative unit lengths, some of which are consider horizontal and the other vertical (thanks to bring this in comments). I found a couple of answers which may help you to understand it e.g. check this answer and this answer.
parskipdo what you want? (Depends on your answer to @JoséCarlosSantos, probably.) – cfr Sep 16 '23 at 14:47\noindent. parskip doesn't seem to do the trick. – stimulate Sep 16 '23 at 14:53\bigskipor\vspace{30pt}or similar to have a certain amount of white space. If you want to have the same amount of white space after each paragraph, as already mentioned,\parskipis the way to go. // See e.g. here: https://en.wikibooks.org/wiki/LaTeX/Paragraph_Formatting#Paragraph_indent . – MS-SPO Sep 16 '23 at 15:01\parskipis a length defined inside Latex, not a package. That said ... https://ctan.org/pkg/parskip ... but just use the length. // That's why we don't stop ASKING for complete MWE's ... ;-) – MS-SPO Sep 16 '23 at 15:15\parskiplength at every blank line in the tex file or something like that. I am now going with setting the\parskiplength aswell, without the package. – stimulate Sep 16 '23 at 15:17\parskiplength at that point. If you're getting\parskipwhere you think you shouldn't, then show us an example and we can talk about it. – Teepeemm Sep 16 '23 at 15:32\\. See When to use\parand when\\for more information Iand likely duplicate), If you want an actual blank line, after a blank line in the input, add\vspace{\baselineskip}and then another blank line. – barbara beeton Sep 16 '23 at 18:16