为什么 \date 不起作用?

为什么 \date 不起作用?
\documentclass[notitlepage, 12pt]{amsart}
\usepackage{amsthm, amsmath, amsaddr, amssymb, graphicx, dsfont,}
\usepackage[dvipsnames]{xcolor}
\renewcommand{\baselinestretch}{1.2}
\usepackage{natbib}
\usepackage{caption}
\usepackage{enumitem}

\raggedbottom

 \newtheorem{theorem}{Theorem}
 \newtheorem{lemma}{Lemma}
 \newtheorem{proposition}{Proposition}
  \newtheorem{corollary}{Corollary}
  \newtheorem{definition}{Definition}
 \newtheorem{example}{Example}
\newtheorem{remark}{Remark}
\newtheorem{assumption}{Assumption}

  \usepackage{geometry}
  \geometry{
body={6.5in, 9.0in},
left=1.25in,
right=1.25in,
top=1.25in,
bottom=1.25in
 }
\usepackage[
colorlinks=true,
linkcolor=Blue,
citecolor=Brown]{hyperref}

%\usepackage{footmisc}
%\setlength{\footnotesep}{0.4cm} %footnote spacing

\DeclareMathOperator*{\argmax}{arg\,max}
\DeclareMathOperator{\ima}{Im}
 \newcommand{\namedthm}[2]{\theoremstyle{plain}
 \newtheorem*{thm#1}{Theorem #1}\begin{thm#1}#2\end{thm#1}}

 \usepackage{float}

 \begin{document}

\renewcommand*{\thefootnote}{\fnsymbol{footnote}}

\thispagestyle{empty}

 \begin{center}
{\Large Title}
\end{center}\vskip 1cm 

\begin{center}
\date{October 18, 2022}
\end{center}\vskip 2cm 



 \end{document}

我不想显示作者,而是想显示不是今天的日期。但是 \date 不起作用(但是 \today 可以工作)。我该如何修复它?

相关内容