[Tex/LaTex] how to add a title and author in an \appendix

appendicesarticleformattingkoma-script

I am using a KOMA script class and I need to add an appendix at the end of my paper.

Problem is: I would like to have a title and an author part in the appendix, very much as the ones I have in the main document

Any ideas how can I do that? The following solution (using \author{John Doe} and \maketitle after \appendix) does not work

\documentclass[11pt,captions=nooneline,DIV=14, parskip=half]{scrartcl}


\begin{document}
\title{my title}

\author{John Doe}
\date{ }
\maketitle
\begin{abstract}
Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum
\end{abstract}

\section{Introduction}

intro

\appendix
\section{appendix}

% does not work unfortunately. Nothing appears
\author{John Doe}

\end{document}

Thanks!

Best Answer

Already since KOMA-Script 3.12 (Beta from May 2013 or release from December 2013), all KOMA-Script classes support several titles inside the document. So you can simply use, e.g.,

\documentclass[11pt,captions=nooneline,DIV=14, parskip=half]{scrartcl}[2013/05/29]% Need at least an early state of KOMA-Script 3.12

\begin{document}
\title{my title}

\author{John Doe}
\date{ }
\maketitle
\begin{abstract}
Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum
\end{abstract}

\section{Introduction}

intro

\appendix

% does not work unfortunately. Nothing appears
\title{Appendix}
\author{John Doe}
\maketitle

\end{document}

to generate an additional appendix title:

enter image description here