I'm somewhat of a LaTeX noob, and this is driving me completely nuts.
When I type
\documentclass{article}
\usepackage{enumitem}
\begin{document}
Some text
\begin{itemize}[noitemsep]
\item Item 1
\item Item 2
\item Item 3
\end{itemize}
\end{document}
I don't want the space which appears in between the text "Some text" and the itemization to be there:

When I search around on Google all I see is tons of long, complicated advice on this site, StackOverflow, forums, etc. on how to not fix the problem ("parskip is evil", etc.), or tons of vague/confusing answers on what package to look at, with no actual example for me to learn from.
So while this question is already asked many times, I have never found a single concrete answer to this question.
The question couldn't be simpler: How do I "properly" get rid of this extra space?


itemize. You can also create your own list with these settings, if need be. – Werner Dec 08 '12 at 03:39\newenvironment{Itemize}{\begin{itemize}[noitemsep,topsep=0pt]}{\end{itemize}}. But I would go for Werner's solution. – hpesoj626 Dec 08 '12 at 03:48\setlist[itemize]{noitemsep, topsep=0pt}you can also say\setlist{nosep}, which kills all vertical spacing. – Roald Nov 27 '16 at 15:57beamerclass (or something else). – Werner Feb 05 '18 at 16:15enumitem. Just copying the itemize block won't work. – Thomas Apr 21 '20 at 11:19\usepackage{enumitem}in the preamble, so that means that I am "using the packageenumitem." – Werner Apr 21 '20 at 15:18topsepandbottomsep? Or where to check them, for that matter? – Daneel Olivaw Nov 15 '21 at 15:26\documentclass{article}, the default font size is10pt, with the list parameters\@listiset insize10.clo. There's alsosize11.cloandsize12.cloif you load one of the default classes with either11ptor12ptoptions. – Werner Nov 15 '21 at 18:10noitemsepandtopsep=0pt(which is equivalent tonosep) and the second page sets a similar list as a bunch of\paragraphs. Without investigating, I think the bottom gap is just whatever you have for itemsep, so not necessarily\baselineskip. – Werner Mar 02 '22 at 20:29