如何移动首页脚注中的作者地址?

如何移动首页脚注中的作者地址?

我希望地址在第一页的脚注中

在此处输入图片描述

\documentclass[12pt,reqno]{amsart}
%------------------------------------------------------------
  \usepackage{etoolbox}
   \makeatletter
   \patchcmd\maketitle
      {\uppercasenonmath\shorttitle}
        {}
        {}{}
  \patchcmd\maketitle
        {\@nx\MakeUppercase{\the\toks@}}
       {\the\toks@}
         {}
         {}{}
    %----
   %\patchcmd\@settitle
   %  {\uppercasenonmath\@title}
   % {}
   %  {}{}
    \patchcmd\@setauthors
          {\MakeUppercase{\authors}}
          {\authors}
           {}{}
 \makeatother
  %------------------------------------------------------------
 %\usepackage[notref,notcite]{showkeys}
  \usepackage{amsmath,amssymb,amsthm}
  \usepackage{color}
  \usepackage{url}
   %-----------------               
  %------------------------------------------------------------
  \usepackage[utf8]{inputenc}
  \usepackage[T1]{fontenc}
   %------------------------------------------------------------
 \usepackage{geometry}
   \geometry{left=2cm,right=2cm,top=2cm,bottom=2cm}

%-------------------------------------------
 \address{$^{[1]}$ The address of author1.}
  \email{\url{[email protected]}}
    \address{$^{[2]}$ The address of author2.}
 \email{\url{[email protected]}}

 \subjclass[2010]{......}

    \keywords{......}

  %%%%%%%%%%%% \begin{document} %%%%%%%%%%%%%%%%%%%%
 \begin{document}
 \author[Author1, Author2] {Author1$^{1}$ and Author2$^{2}$ }
 \title{Title}
 \maketitle
 \end{document}

答案1

  \documentclass[12pt,reqno]{amsart}
%------------------------------------------------------------
   \usepackage{etoolbox}

   %---------- To move the authors addresses to the footnote ----------

   \makeatletter

\appto\maketitle{%
\let\@makefnmark\relax  \let\@thefnmark\relax
\ifx\@empty\addresses\else\@footnotetext{%
  \vskip-\bigskipamount\@setaddresses}
  }
\def\enddoc@text{}
\makeatother

%-----------------------end -------------------

   \makeatletter
   \patchcmd\maketitle
    {\uppercasenonmath\shorttitle}
     {}
    {}{}
    \patchcmd\maketitle
    {\@nx\MakeUppercase{\the\toks@}}
   {\the\toks@}
       {}
      {}{}
        %----
     %\patchcmd\@settitle
     %  {\uppercasenonmath\@title}
     % {}
      %  {}{}
      \patchcmd\@setauthors
       {\MakeUppercase{\authors}}
     {\authors}
       {}{}
     \makeatother
      %------------------------------------------------------------
     %\usepackage[notref,notcite]{showkeys}
   \usepackage{amsmath,amssymb,amsthm}
      \usepackage{color}
      \usepackage{url}
       %-----------------               
      %------------------------------------------------------------
      \usepackage[utf8]{inputenc}
      \usepackage[T1]{fontenc}
       %------------------------------------------------------------
     \usepackage{geometry}
       \geometry{left=2cm,right=2cm,top=2cm,bottom=2cm}

    %-------------------------------------------
     \address{$^{[1]}$ The address of author1.}
      \email{\url{[email protected]}}
        \address{$^{[2]}$ The address of author2.}
     \email{\url{[email protected]}}

     \subjclass[2010]{......}

        \keywords{......}




      %%%%%%%%%%%% \begin{document} %%%%%%%%%%%%%%%%%%%%
     \begin{document}
     \author[Author1, Author2] {Author1$^{1}$  and Author2$^{2}$ }
     \title{Title}

     \maketitle


        \end{document}

在此处输入图片描述

更新以小写形式排版地址

 \documentclass[12pt,reqno]{amsart}
%------------------------------------------------------------
   \usepackage{etoolbox}

   %---------- To move the authors addresses to the footnote ----------

   \makeatletter

 \patchcmd{\@setaddresses}{\scshape\ignorespaces}{\ignorespaces}{}{} % addresses in lowercase

\appto\maketitle{%
\let\@makefnmark\relax  \let\@thefnmark\relax
\ifx\@empty\addresses\else\@footnotetext{%
  \vskip-\bigskipamount\@setaddresses}
  }
\def\enddoc@text{}
\makeatother

%-----------------------end -------------------

   \makeatletter
   \patchcmd\maketitle
    {\uppercasenonmath\shorttitle}
     {}
    {}{}
    \patchcmd\maketitle
    {\@nx\MakeUppercase{\the\toks@}}
   {\the\toks@}
       {}
      {}{}
        %----
     %\patchcmd\@settitle
     %  {\uppercasenonmath\@title}
     % {}
      %  {}{}
      \patchcmd\@setauthors
       {\MakeUppercase{\authors}}
     {\authors}
       {}{}

     \makeatother
      %------------------------------------------------------------
     %\usepackage[notref,notcite]{showkeys}
   \usepackage{amsmath,amssymb,amsthm}
      \usepackage{color}
      \usepackage{url}
       %-----------------               
      %------------------------------------------------------------
      \usepackage[utf8]{inputenc}
      \usepackage[T1]{fontenc}
       %------------------------------------------------------------
     \usepackage{geometry}
       \geometry{left=2cm,right=2cm,top=2cm,bottom=2cm}

    %-------------------------------------------
     \address{$^{[1]}$ The address of author1.}
      \email{\url{[email protected]}}
        \address{$^{[2]}$ The address of author2.}
     \email{\url{[email protected]}}

     \subjclass[2010]{......}

        \keywords{......}




      %%%%%%%%%%%% \begin{document} %%%%%%%%%%%%%%%%%%%%
     \begin{document}
     \author[Author1, Author2] {Author1$^{1}$  and Author2$^{2}$ }
     \title{Title}

     \maketitle


        \end{document}

相关内容