[Tex/LaTex] New/blank line in itemize

itemizespacing

I have an itemize area with several point inside it. I want to have the following result:

- one
- two

- three

Is there is an appropitate way to do so? As a workaround I used the following code to do what I want to have. But I hope there is a more nicer way 🙂

\item one
\item two
\item[~]  
\item three

Best Answer

You add vertical space in the same way you'd do outside itemize; it's not very clear why you'd do it in the first place.

The following code works also with beamer.

\documentclass{article}
\begin{document}

\begin{itemize}
\item one
\item two

\bigskip

\item three
\end{itemize}

\end{document}

enter image description here