I tried to use a \paragraph-environment, but I do want a new line after the title and no indent in the first textline.
New line is easy, but the first line is indented even if I use \noindent, \setlength{\parindent}{0pt} and \hangafter=0
I extracted an example:
\documentclass[12pt,a4paper,twoside]{scrreprt}
\usepackage[ngerman]{babel}
\usepackage[T1]{fontenc}
\usepackage[latin9]{inputenc}
\usepackage{blindtext}
\setlength{\parindent}{0pt}
\hangafter=0
\begin{document}
\subsection{subsection}
\blindtext
%\noindent %does not bring any effect
\paragraph{paragraphNewline\newline}
\blindtext
\end{document}
The first block is ok, but the second is not.
I expect to try a \renewcommand / \renewenvironment, but I do not know what to write in.
In general: Is there an overview, where I can see the implementation of LaTeX-commands and -environments?