如何在 LyX 中的标题中添加脚注

如何在 LyX 中的标题中添加脚注

我想在标题中添加未标记的脚注。当我在标题中输入脚注时,它不会出现在我的 PDF 中。如何在出现在第一页底部的标题中插入未标记的脚注?

梅威瑟:

\documentclass[english,reqno]{amsart}
\usepackage[T1]{fontenc}
\usepackage[latin9]{inputenc}
\usepackage{amsthm}

\makeatletter
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% Textclass specific LaTeX commands.
\numberwithin{figure}{section}

\makeatother

\usepackage{babel}
\begin{document}

\title{{\normalsize{}}\thanks{ABC}{\normalsize{}Title}}\maketitle

\end{document}

答案1

姆韦

如果希望在第一页中不加标记的脚注,请不要在标题 ( = \thanks{}) 中使用 LyX 脚注,而是在 ERT 框中使用。在正常文本环境的第一行\footnotetext{}之后,效果会更好(即不使用小写字母) 。\maketitle

为了避免标记(0在这种情况下),你可以 \let\thefootnote\relax(即\thefootnote什么也不做)但仅限于此\footnotetext您希望之后有正常的脚注的情况。请参阅无标记的脚注寻找其他方法。

LaTeX 版本:

\documentclass[oneside,english]{amsart}
\usepackage[paperwidth=15cm,paperheight=6cm]{geometry}
\usepackage{amsthm}
\begin{document}
\title{My AMSART Title}
\maketitle
{\let\thefootnote\relax\footnotetext{This is my unmarked footnote.}}
My article text.%
\footnote{A marked footnote.}
\end{document}

相关内容