[Tex/LaTex] an elegant way to insert a skip between two paragraphs

paragraphsspacing

From time to time I want to insert a skip between two specific paragraphs (at the end of a thought). My first shot was to simply insert a \vspace but the indentation still bothered me.

So what I came up with in the end was a new command:

\newcommand{\parspace}{\vspace*{\baselineskip}\noindent}

With this I can add it wherever I want and have a break in the text.

However, it doesn't feel very elegant. Is there a better way to perform the same action?

Best Answer

\documentclass{article}
\newcommand\parspace[1][\bigskip]{\par#1\noindent\ignorespaces}
\begin{document}
foo
\parspace
bar
\parspace[\medskip]
baz
\end{document}
Related Question