无法使用\感谢一位作者

无法使用\感谢一位作者

编辑 2:我的问题确实是重复的,或者是我自己的一些误解。抱歉给您带来不便。

编辑:这个问题被关闭了,因为重复了,但链接的帖子并没有解决我的问题。我的问题是,我无法将任何类型的\thanks\footnote或 甚至\footnotemark放在 的第二个参数中\author。另外,我没有添加 URL。我添加了文本。

我正在努力为\thanks第二作者添加一个(应该放在第一页的底部)。在下面,唯一缺少的是(A)第二作者的数字/符号,以及(二)为创建的页脚添加数字/符号\thanksthanks在里面输入第二作者的全名会引发错误。我也试过了\footnote,但没能成功。

\documentclass[a4paper,11pt]{amsart}
\usepackage{amsmath,amssymb,amsthm, amsfonts,color}

\begin{document}

\title{A paper}

\author[F. Author]{First Author}
\author[S. Author]{Second Author}\thanks{for all the fish}
\address{the department\\
a place}
\email[F. Author]{[email protected]} 
\email[S. Author]{[email protected]}



\maketitle

\begin{abstract}
the abstract
\end{abstract}

\section{intro}
lots of good stuff 

\end{document}

上述代码的输出

希望这个问题能够轻松解决。提前致谢!

答案1

可能不太适合指出哪位作者获得了特定资助或感谢其资助者。可能更适合说

作者谨感谢 AMS 对本文发表的慷慨支持

\documentclass[11pt]{amsart} % A-M-S-ART-icle 
% Templates and template classes are built with ONE prime
% purpose, that is they serve to provide a like it or not framework. 
% ``As author, you are responsible for the content of your paper. 
% At the production end, the concern is to turn the (electronic)
% manuscript into a published document in the style of the designated journal
% see http: //mirrors.ctan.org/info/amscls-doc/Author_Handbook_Journals.pdf

% Unmarked, unnumbered footnotes on the first page of an article should include
% primary classification numbers according to the 2010 Mathematics Subject 
% Classification scheme (www.ams.org/msc) (required);  grant information (optional);
% and key words and phrases describing the subject matter of the article (optional). 

% Formatting is automatic when using the AMS style files. 

% That framework may be upset by the use of package
% contents in a different order or subsequent changes
% to that envisioned by the template writers at the time.
% Item sequencing or structure should not be changed.
% to check what can be here and in what order consult
% the documentation. If you add an item to a template 
% it is your responsibility to change one item at a time
% for comparability.
\usepackage{lipsum} % for demonstration only 

\begin{document} % Be aware this document is invalid it does not follow class rules

%main data block
%%
%% The title of the paper goes here.  Edit to your title.
%%
\title[short]{A duplicate question} % longtitle data to be placed at start
%%
%% Now edit the following to give first name and address:
%% Also you can Give information on grants or contracts under which the research
%% was performed, including grant number, using the \thanks command. 
%% 
\author{I'm First Author} % author sign off to be placed at article closing is a fixed sequence
\address{At the department, some plaice\vspace{0.3cm}} % A one line SC entry 
\email{[email protected]}% Italics then bold
\thanks{Thanks... @ barbara beeton ... for all her hard work as TeX ``champion'' at AMS} % the first authors thanks data is collected from any first occurrence
%%
%% If there is a secondary author edit the following.
%%
\author{ALSO Second Author}
%\address{ALSO At the department, some plaice} % IF required for a second establishment
\email{ALSO [email protected]}% Italics then bold
% Second authors thanks data is collected from the correct placement of defining 2nd \thanks
\thanks{ALSO Thanks to @ sigma-finite for a generous grant of ``If at first it does not work ... lets describe it''}
%%%
%%% The following is for the abstract.  The abstract is optional and
%%% if not used just delete, or comment out, the following.
%%%
%\begin{abstract}% Environment data for Title abstract data on first page
%The abstract is defined before the maketitle command is invoked
%\end{abstract}
%%
%%  LaTeX will not make the title for the paper unless told to do so.
%%  This is done by uncommenting the following.
%%
\maketitle % For amsArt(icle) class maketitle function should appear after above data is loaded including abstract


\section{How AMS article class works}

We can see the AMS Class is not expecting any data in the \bf first page footing \normalfont other than mandatory classification such as \bf 15-06 Proceedings, conferences, collections, etc. or optional thanks for grants \normalfont or other abstract key words\\\par Lots of good floating stuff \hfill \lipsum [1-2]
\end{document}

在此处输入图片描述

答案2

在这种情况下,最简单的解决方案似乎是手动添加作者符号:

\documentclass[a4paper,11pt]{amsart}
\usepackage{amsmath,amssymb,amsthm, amsfonts,color}

\makeatletter
\newcommand\thankssymb[1]{\textsuperscript{\@fnsymbol{#1}}}
%\newcommand\thankssymb[1]{\lowercase{\textsuperscript{\@alph{#1}}}}
%\newcommand\thankssymb[1]{\textsuperscript{#1}}
\makeatother

\begin{document}

\title{A paper}

\author[F. Author]{First Author\thankssymb{1}}
\author[S. Author]{Second Author\thankssymb{2}}
\thanks{\thankssymb{1} for all the fish}
\thanks{\thankssymb{2} for all the chips}

\address{the department\\
a place}
\email[F. Author]{[email protected]} 
\email[S. Author]{[email protected]}

\begin{abstract}
the abstract
\end{abstract}

\maketitle

\section{intro}
lots of good stuff 

\end{document}

在此处输入图片描述

我定义了一个新命令,它以数字作为第一个参数,代表要引用并在和\thankssymb中使用的作者。\author\thanks

给出了脚注符号、小写字母和纯数字的三种示例样式\thankssymb。请注意在第二个变体中使用lowercase,因为作者姓名在 中以大写字母排版amsart

答案3

这是一个“更简单”的解决方法:

\author{First Author^1} \thanks{^1 Thanks\ for\ releasing\ fish}

需要反斜杠来保留空格-不知道为什么。

相关内容