Sorry for the noob question, I have the MWE example below, in which I just want to change the vertical spacing between 2 blocks of text, and I don't seem to be understanding how this works, or what the best way to do it should be, cause the result is far from the desired one.
This is the MWE:
\documentclass{article}
\usepackage{lipsum}
\setlength{\parindent}{0pt}% No paragraph indentation
\setlength{\parskip}{.5\baselineskip plus 0.1\baselineskip minus 0.1\baselineskip}
%%Page geometry
\usepackage[left=1cm,top=2cm,right=1cm,bottom=2cm]{geometry}
\begin{document}
Some text here \lipsum[2], and after that I want to introduce some vertical space at the end of the paragraph.\\
\medskip
After the vertical space, I want to introduce more text \lipsum[10]
\begin{itemize}
\setlength\itemsep{1pt}
\item item one
\item item two
\item item three
\item item four
\item item five
\end{itemize}
\end{document}
I just want to introduce some extra spacing (\medskip or \vspace) between the end of "...the paragraph" and the beginning of "After the vertical space...", but the result is really off, as you can see below.
Besides, I would like to reduce the space between \itemize items, as they still look really separated as they are right now, but it seems I cannot go further some limit.
Thanks!


