我需要在thanks
。答案这里有一个类似的解决方案,但针对特定的包——我需要插入注释/版权页前首先thanks
。
\documentclass{scrartcl}
\title{A title}
\author{John Doe\thanks{Thank you all, I need some text above this.}}
\begin{document}
\maketitle
\end{document}
答案1
这不是一种优雅的做事方式(也不推荐),我之所以给出这个答案,只是因为 OP 明确表示愿意接受黑客式的解决方案,只要满足要求即可。有人可能会想出更好的办法。
\documentclass{scrartcl}
\usepackage{xcolor}
\newcommand\copyrightnote[1]{%
\begingroup
\renewcommand\thefootnote{}\footnote{\kern-5pt \textcolor{white}{\rule{5pt}{2ex}}#1}%
\addtocounter{footnote}{-1}%
\endgroup
}
\title{A title}
\author{John Doe\copyrightnote{My copyright note.}\thanks{Thank you all, I need some text above this.}}
\begin{document}
\maketitle
\end{document}