z*****n 发帖数: 7639 | 1 rt. \footnote doesnt work. |
T*******n 发帖数: 493 | 2 You can try the following; however, making the superscribed 1 in the chapter
heading look better will take a bit more work. To understand why \protect is
needed, read up on "fragile commands" and "moving arguments" in a good LaTeX
book.
\documentclass{report}
\begin{document}
\chapter{Introduction\protect\footnote{The footnote.}}
The text.
\end{document}
【在 z*****n 的大作中提到】 : rt. \footnote doesnt work.
|
z*****n 发帖数: 7639 | 3
chapter
is
Thanks, it works.
But the number on the title also appears in the table of contents...:(
【在 T*******n 的大作中提到】 : You can try the following; however, making the superscribed 1 in the chapter : heading look better will take a bit more work. To understand why \protect is : needed, read up on "fragile commands" and "moving arguments" in a good LaTeX : book. : \documentclass{report} : \begin{document} : \chapter{Introduction\protect\footnote{The footnote.}} : The text. : \end{document}
|
z*****n 发帖数: 7639 | 4 and the footnote also appears in the table of content page.
【在 z*****n 的大作中提到】 : : chapter : is : Thanks, it works. : But the number on the title also appears in the table of contents...:(
|
T*******n 发帖数: 493 | 5 Try repeating the heading text as an optional argument. If an optional
argument is given, it is used to set the TOC and running headers on
pages; the text in the last argument is then used only to set the
actual chapter heading.
\chapter[Introduction]{Introduction\protect\footnote{The footnote.}}
【在 z*****n 的大作中提到】 : and the footnote also appears in the table of content page.
|