在底部添加日期

在底部添加日期

使用以下代码

     \documentclass[12pt, reqno]{amsart}
    \usepackage{amsmath, amsthm, amscd, amsfonts, amssymb, graphicx, color}
    \usepackage[bookmarksnumbered, colorlinks, plainpages]{hyperref}
    \hypersetup{colorlinks=true,linkcolor=red, anchorcolor=green, citecolor=cyan, urlcolor=red, filecolor=magenta, pdftoolbar=true}

    \textheight 22.5truecm \textwidth 15truecm
    \setlength{\oddsidemargin}{0.25in}\setlength{\evensidemargin}{0.25in}
     \renewcommand{\baselinestretch}{1.25}
    \setlength{\topmargin}{-.5cm}


     \begin{document}
    \title[]{}
   \subjclass[2010]{Primary 47B99; Secondary 47A05.}

    \keywords{m-isometry, strict m-isometry n-quasi-m-isometry.}
    \maketitle
    \end{document} 

我明白了

enter image description here

但我希望得到

enter image description here

答案1

您应该\date{\emph{December 3-2018}}在您的代码中使用。

    \documentclass[12pt, reqno]{amsart}
    \usepackage{amsmath, amsthm, amscd, amsfonts, amssymb, graphicx, color}
    \usepackage[bookmarksnumbered, colorlinks, plainpages]{hyperref}
    \hypersetup{colorlinks=true,linkcolor=red, anchorcolor=green, citecolor=cyan, urlcolor=red, filecolor=magenta, pdftoolbar=true}

    \textheight 22.5truecm \textwidth 15truecm
    \setlength{\oddsidemargin}{0.25in}\setlength{\evensidemargin}{0.25in}
     \renewcommand{\baselinestretch}{1.25}
    \setlength{\topmargin}{-.5cm}


     \begin{document}
    \title[]{}
    \today{\emph{December 3-2018}}
   \subjclass[2010]{Primary 47B99; Secondary 47A05.}

    \keywords{m-isometry, strict m-isometry n-quasi-m-isometry.}
    \maketitle

    \end{document} 

enter image description here

相关内容