This refers to my question.
How to reduce space in begining of itemize?
[topsep=0] also reduces space between the itemize and text below to itemlist. I just want to reduce space in the beginning, not in the last.
How can I implement it?
This refers to my question.
How to reduce space in begining of itemize?
[topsep=0] also reduces space between the itemize and text below to itemlist. I just want to reduce space in the beginning, not in the last.
How can I implement it?
My suggestion would be to define your own environment to do this:
\documentclass{article}
\newenvironment{toplessitemize}{\vspace{-\topsep}\begin{itemize}}{\end{itemize}}
\usepackage{lipsum}
\begin{document}
{\let\par\relax\lipsum[2]}
\begin{toplessitemize}
\item stuff
\item stuff
\item
\end{toplessitemize}
\lipsum[3]
\end{document}

If you want more control over the spacing you might try something like
\newenvironment{toplessitemize}{\vspace{\dimexpr-\topsep+<FACTOR>\baselineskip\relax}%
\begin{itemize}}
{\end{itemize}}