无法在 amsart 文档类中打印作者姓名和所属机构

无法在 amsart 文档类中打印作者姓名和所属机构

使用以下序言,我没有在 pdf 中显示任何作者姓名。有人能告诉我为什么会发生这种情况吗?

\documentclass[twoside,reqno,10pt]{amsart}
\raggedbottom 

% Packages for mathematics and symbols
\usepackage{amsmath}    % Enhanced math formatting and symbols
\usepackage{amssymb}    % Additional math symbols, for circlearrowleft. 
\usepackage{amsthm}     % Theorem environments
\usepackage{amsfonts}   % Math fonts
\usepackage{mathtools}  % Extends amsmath
\usepackage{bbm}        % For "\mathbb{1}"
\usepackage{dsfont}     % for bold faces "1". 
\usepackage[mathscr]{euscript}

% Graphics and diagrams
\usepackage{graphicx}   % Include graphics
\usepackage{tikz-cd}    % Commutative diagrams

% Page layout and formatting
\usepackage{geometry}   % Page layout
\usepackage{setspace}   % Adjust line spacing
\usepackage{enumerate}  % Custom enumeration lists

% Bibliography
\usepackage{cite}

% Additional packages
\usepackage{hyperref}   % Hyperlinks within the document
\usepackage{comment}    % To use the "comment" envioronment. 
\usepackage{authblk}    % For author information. 


% Title and author information
% Document metadata
\title{Your Title}
\author[F1.LastName1]{FirstName1 LastName1}
\address{Address1}
\email{[email protected]}
\author[F2.LastName2]{FirstName2 LastName2}
\address{Address2}
\email{[email protected]}


\begin{document}

\maketitle

\begin{abstract}

标题正在打印。但是 pdf 中没有显示作者姓名。

相关内容