我正在使用 AAS 模板,链接这里。我是 LaTeX 新手,想让脚注出现在标题中,但诸如 、 和其他几个命令\footnote
不起作用\thanks
。这些\thanks
命令对作者有效,但对\title
或无效\maketitle
。以下是 MWE:
\documentclass[letterpaper, paper,11pt]{AAS}
\usepackage{bm}
\usepackage{amsmath}
\usepackage{graphicx}
\usepackage{caption}
\usepackage{subcaption}
\usepackage[colorlinks=true, pdfstartview=FitV, linkcolor=black, citecolor= black, urlcolor= black]{hyperref}
\usepackage{overcite}
\usepackage{footnpag} % make footnote symbols restart on each page
\usepackage{epstopdf}
\usepackage[section]{placeins}
\PaperNumber{#}
\begin{document}
\title{text...}
\author{name\thanks{info about author} \ and name\thanks{info about author}}
\maketitle{}
\end{document}
答案1
你必须\protect
让它\footnote
工作:
\documentclass[paper]{AAS}% http://www.univelt.com/FAQ.html#SUBMISSION
\usepackage{hyperref}
\PaperNumber{1234}
\begin{document}
\title{A title\protect\footnote{\MakeLowercase{\MakeUppercase{A} title footnote.}}}
\author{First Author\thanks{Info about First Author.} \ and Second Author\thanks{Info about Second Author.}}
\maketitle
\end{document}
由于\title
是使用设置的\MakeUppercase
,因此您必须对中的内容施展一些魔法,\footnote
以按照您想要的方式进行设置。
答案2
我不确定您到底在寻找什么,但是,您是否尝试过以下代码片段?
\footnote{numbered footnote}
\let\thefootnote\relax\footnotetext{footnote without number}
答案3
答案4
仅当选项在时间设置时,文档AAS
类才允许您为标题提供脚注。(我认为该选项应该用于会议论文,并且该选项应该用于提交给 JAS(该协会的期刊)的论文。)submit
\documentclass
paper
submit
如果未设置该选项,则将启动submit
以下代码(参见第 180 行):AAS.cls
\if@submit%
...
\else% paper, or note
...
\renewcommand\thanks[1]{}% locally kill the \thanks{} command
...
结论:如果您确实想提供与标题相符的脚注,请使用submit
文档类选项。如果您不被允许这样做,不提供与标题相符的脚注。