current output:
Desc 1 Bla 1
wanted output:
Desc 1: Bla 1
MWEs:
current output:
\documentclass[oneside,12pt]{scrartcl}
\usepackage{polyglossia}
\setdefaultlanguage{german}
\usepackage{fontspec}
\begin{document}
\begin{description}
\item[Desc 1] Bla 1
\end{description}
\end{document}
wanted output:
\documentclass[oneside,12pt]{scrartcl}
\usepackage{polyglossia}
\setdefaultlanguage{german}
\usepackage{fontspec}
\begin{document}
\begin{description}
\item[Desc 1:] Bla 1
\end{description}
\end{document}
of course I know I could do it by regex replace... but i'm pretty sure there is an easier and more elegant way. and also i'm looking for a solution for the case where i have >100 items


\itemalone insidedescriptionis wrong anyway. – egreg Jul 28 '15 at 16:54