[Tex/LaTex] Is it possible to change the date(year) in AMS subject classification number in a latex doc.

amsartdatetime

I am creating a LaTeX doc. using \documentclass{amsart}. When I run it, the year appears in AMS subject classification is 1991. Is it possible to change it to 2010? Many thanks for your help.

Best Answer

There is an optional argument to the \subjclass command, which you may specify to be 2010.

\subjclass[2010]{Primary: 53C26}

Note that there are internal checks on the year, so the only valid values are 1991, 2000 and 2010. Presumably this will be updated when the next subject classification is released for 2020.

Sample output

\documentclass{amsart}

\begin{document}

\title{A title}
\author{A. Author}
\subjclass[2010]{Primary: 53C26}
\maketitle

\end{document}

update:
The 2020 option was added with version [2020/05/29 v2.20.6].