This famous question explains how you can reduce the empty useless spacing between listings or so, but now I'd like to do the same with center, which also has a big space here:
\documentclass{scrartcl}
\parskip3mm
\parindent0mm % if you want to have no lineskip
\usepackage{roboto} % font
\usepackage{lipsum}
\begin{document}
\lipsum[1]:
\begin{center}
\huge
\robotoMedium{OBJECTION}
\end{center}
\lipsum[1]
\lipsum[1]
\end{document}
My aim is that it should read similar as if it was nearly one sentence, i.e.
Here I am describing my: Objection
I.e. the new line, size and centering should just be some highlighting, but not indicate a new paragraph e.g.
Tries
Of course I already tried the same solution as explained in the linked SE answer:
\documentclass{scrartcl}
\parskip3mm
\parindent0mm % if you want to have no lineskip
\newenvironment{centerCompact}
{ \begin{center}
\setlength{\itemsep}{0pt}
\setlength{\parskip}{0pt}
\setlength{\parsep}{0pt} }
{ \end{center} }
\usepackage{roboto} % font
\usepackage{lipsum}
\begin{document}
\lipsum[1]:
\begin{centerCompact}
\huge
\robotoMedium{OBJECTION}
\end{centerCompact}
\lipsum[1]
\lipsum[1]
\end{document}
It improves the situation a bit, but does not fully solve it:

It's still too much.


