[Tex/LaTex] Linebreak in \thanks footnote

footnotesline-breakingtitles

I am using the scrartcl class of Koma-Script with \thanks on the title page. Everything works as expected, so far, but I'd like to use a linebreak within the footnote.

Here's an MWE:

\documentclass[11pt, a4paper, DIV=11, titlepage]{scrartcl}

\usepackage[ngerman]{babel}
\usepackage[T1]{fontenc}
\usepackage[utf8]{inputenc}
\usepackage{bigfoot}

\begin{document}

    \title{Spotting Miscellaneous Anomalies}
    \subtitle{A Field Guide for the Utterly Confused}
    \author{Nomen~\textsc{Nescio\,}\thanks{University of Nonesuchplace, Departement of Odds and Ends}} 
    \maketitle

\end{document}

I'd like to be "Departement" (after Nonesuchplace) to be on a new line, but \\ just produces 101 (or so) errors. Any ideas?

Best Answer

As a workaround use \newline instead of \\.

\documentclass[11pt, a4paper, DIV=11, 

titlepage]{scrartcl}

\usepackage[ngerman]{babel}
\usepackage[T1]{fontenc}
\usepackage[utf8]{inputenc}
\usepackage{bigfoot}

\begin{document}

    \title{Spotting Miscellaneous Anomalies}
    \subtitle{A Field Guide for the Utterly Confused}
    \author{Nomen~\textsc{Nescio\,}\thanks{University of Nonesuchplace,\newline Departement of Odds and Ends}} 
    \maketitle

\end{document}