我在标题页上使用withscrartcl
类。到目前为止,一切正常,但我想在脚注中使用换行符。Koma-Script
\thanks
以下是 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}
我想将“Departement”(在 Nonesuchplace 之后)放在新行上,但\\
只会产生 101 个(左右)错误。有什么想法吗?
答案1
作为一种解决方法,使用\newline
而不是\\
。
\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}