I'd like "More text." not to be indented like it wouldn't be after \subsection or \end{center}. But in my macro, it is indented, although it is after \end{center}.
How can I implement that command/option to my macro for \reg?

Code: Select all
\documentclass{scrartcl}
\usepackage[T1]{fontenc}
\usepackage{lmodern}
\newcommand{\reg}[1]{
\begin{flushleft}
\large{\textbf{#1}}
\end{flushleft}}
\begin{document}
\reg{Some Heading}
More text.
\end{document}