例子

例子

我正在使用 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

正如之前所问的:您使用哪个模板或文档类。在普通的 LaTeX 类(articlereportbook)中应该完全没有问题。所以我的建议是:使用标准类,它们应该可以解决您的问题。

例子

\documentclass{article}

\title{Some title stuff\footnote{Some footnote content}}
\date{\today}\author{A. U. Thor}


\begin{document}
\maketitle{}
\end{document}

结果

在此处输入图片描述

答案4

仅当选项在时间设置时,文档AAS类才允许您为标题提供脚注。(我认为该选项应该用于会议论文,并且该选项应该用于提交给 JAS(该协会的期刊)的论文。)submit\documentclasspapersubmit

如果未设置该选项,则将启动submit以下代码(参见第 180 行):AAS.cls

\if@submit%
  ...
\else% paper, or note
  ...
  \renewcommand\thanks[1]{}% locally kill the \thanks{} command
  ...

结论:如果您确实想提供与标题相符的脚注,请使用submit文档类选项。如果您不被允许这样做,提供与标题相符的脚注。

相关内容