添加脚注时出现问题

添加脚注时出现问题

即使我添加了,也无法用我的代码做脚注In this paper\footnote{This note is written...............}, we aim

\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@}
  {}
  {}{}
%----titre lowercase-----------
\patchcmd\@settitle{\uppercasenonmath\@title}{\Large}{}{}
%\patchcmd\@settitle{\uppercasenonmath\@title}{} {}{}
%-------------------------
\patchcmd\@setauthors
  {\MakeUppercase{\authors}}
  {\authors}
  {}{}
\makeatother
%------------------------------------------------------------
%\usepackage[notref,notcite]{showkeys}
\usepackage{amsmath,amssymb,amsthm}
\usepackage{color}
\usepackage{url}
\usepackage{tikz-cd}
%-----------------              
%------------------------------------------------------------
\usepackage[utf8]{inputenc}
\usepackage[T1]{fontenc}
%------------------------------------------------------------
\usepackage{geometry}
\geometry{left=2cm,right=2cm,top=2cm,bottom=2cm}
% ------------------------------------------------------------
\newtheorem{theorem}{Theorem}[section]
\newtheorem{definition}{Definition}[section]
\newtheorem{definitions}{Definitions}[section]
\newtheorem{notation}{Notation}[section]
\newtheorem{corollary}{Corollary}[section]
\newtheorem{proposition}{Proposition}[section]
\newtheorem{lemma}{Lemma}[section]
\newtheorem{remark}{Remark}[section]
\newtheorem{example}{Example}[section]
\numberwithin{equation}{section}
%%%%%%%%%%%%% hyperref %%%%%%%%%%%%%%%%%%%%
\usepackage[colorlinks=true]{hyperref}
\hypersetup{urlcolor=blue, citecolor=red , linkcolor= blue}
%----------
%\usepackage[capitalise,noabbrev,nameinlink]{cleveref}      % \labelcref pour les equations
%----------
%%%%%%%%%%%% \begin{document} %%%%%%%%%%%%%%%%%%%%
\begin{document}
%------------------------
\address{$^{[1]}$ Author's Adress.}
\email{\url{[email protected]}}

\keywords{keywords, ......}

\date{\today}

\author[Author] {\Large{Author}$^{1}$}
\title[Title]{Title}

\maketitle
%------------------------
%----------\thispagestyle{empty}
\begin{abstract}
In this paper\footnote{This note is written...............}, we aim 
\end{abstract}

\end{document}

在此处输入图片描述

答案1

解决问题:

\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@}
  {}
  {}{}
%----titre lowercase-----------
\patchcmd\@settitle{\uppercasenonmath\@title}{\Large}{}{}
%\patchcmd\@settitle{\uppercasenonmath\@title}{} {}{}
%-------------------------
\patchcmd\@setauthors
  {\MakeUppercase{\authors}}
  {\authors}
  {}{}
\makeatother
%------------------------------------------------------------
%\usepackage[notref,notcite]{showkeys}
\usepackage{amsmath,amssymb,amsthm}
\usepackage{color}
\usepackage{url}
\usepackage{tikz-cd}
%-----------------              
%------------------------------------------------------------
\usepackage[utf8]{inputenc}
\usepackage[T1]{fontenc}
%------------------------------------------------------------
\usepackage{geometry}
\geometry{left=2cm,right=2cm,top=2cm,bottom=2cm}
% ------------------------------------------------------------
\newtheorem{theorem}{Theorem}[section]
\newtheorem{definition}{Definition}[section]
\newtheorem{definitions}{Definitions}[section]
\newtheorem{notation}{Notation}[section]
\newtheorem{corollary}{Corollary}[section]
\newtheorem{proposition}{Proposition}[section]
\newtheorem{lemma}{Lemma}[section]
\newtheorem{remark}{Remark}[section]
\newtheorem{example}{Example}[section]
\numberwithin{equation}{section}
%%%%%%%%%%%%% hyperref %%%%%%%%%%%%%%%%%%%%
\usepackage[colorlinks=true]{hyperref}
\hypersetup{urlcolor=blue, citecolor=red , linkcolor= blue}
%----------
%\usepackage[capitalise,noabbrev,nameinlink]{cleveref}      % \labelcref pour les equations
%----------
%%%%%%%%%%%% \begin{document} %%%%%%%%%%%%%%%%%%%%
\begin{document}
%------------------------
\address{$^{[1]}$ Author's Adress.}
\email{\url{[email protected]}}

\keywords{keywords, ......}

\date{\today}

\author[Author] {\Large{Author}$^{1}$}
\title[Title]{Title}


%------------------------
%----------\thispagestyle{empty}
\begin{abstract}
In this paper\footnotemark[1], we aim 
\end{abstract}

{\maketitle}

\footnotetext[1]{This note is written...............}
\addtocounter{footnote}{1}
text\footnote{text}


\end{document}

在此处输入图片描述

相关内容