我正在使用 article 类撰写论文book
。我的论文中的一些章节实际上是论文,我想在这些章节的标题中添加脚注以感谢合著者。这是代码:
\documentclass[12pt, a4paper]{book}
\begin{document}
\chapter{Chapter 1 \footnotemark}\footnotetext{the note}
\end{document}
但是,此代码会产生错误\@chapter doesn't match its definition
。我做错了什么?
答案1
请注意,内容和标题使用可选的“短标题”。
\documentclass[12pt, a4paper]{book}
\usepackage{lipsum}
\begin{document}
\tableofcontents
\chapter[Short Title]{Chapter 1 \footnotemark}\footnotetext{the note}
\lipsum[1-10]
\end{document}