如何在脚注中的关键词前添加数学学科分类

如何在脚注中的关键词前添加数学学科分类

我使用的是 amsart。对于关键词,它们只有命令 \keywords。在将论文提交到期刊之前,必须添加数学学科分类,然后添加代码。我在下面发布了我的序言。

我希望它看起来像这样。

在此处输入图片描述

\documentclass[12pt,a4paper]{amsart}
\usepackage{amsfonts}
\usepackage{amsthm}
\usepackage{amsmath}
\usepackage{amscd}
\usepackage[latin2]{inputenc}
\usepackage{t1enc}
\usepackage[mathscr]{eucal}
\usepackage{indentfirst}
\usepackage{graphicx}
\usepackage{graphics}
\usepackage{pict2e}
\usepackage{epic}
\numberwithin{equation}{section}
\usepackage
[left=2.7cm,
right=3.0cm,
top=3.5cm,
bottom=4.0cm,]{geometry}
\usepackage{epstopdf} 
\def\numset#1{{\\mathbb #1}}

\theoremstyle{plain}
\newtheorem{Th}{Theorem}[section]
\newtheorem{Lemma}[Th]{Lemma}
\newtheorem{Cor}[Th]{Corollary}
\newtheorem{Prop}[Th]{Proposition}

\theoremstyle{definition}
\newtheorem{Def}[Th]{Definition}
\newtheorem{Conj}[Th]{Conjecture}
\newtheorem{Rem}[Th]{Remark}
\newtheorem{?}[Th]{Problem}
\newtheorem{Ex}[Th]{Example}

\newcommand{\im}{\operatorname{im}}
\newcommand{\Hom}{{\rm{Hom}}}
\newcommand{\diam}{{\rm{diam}}}
\newcommand{\ovl}{\overline}
%\newcommand{\M}{\mathbb{M}}


\begin{document}

\title{dddfdgs}

\author{sds Ssdasgh}
\author{Basdishth}




\address{se \\ University of dsdsDshid
\email{[email protected]}
\address{Univsasa\\ Deparsastics}
\email{[email protected]}


\begin{abstract} lipsum
\end{abstract}

\关键词{fdgfg}

\maketitle


\section{Introduction} blablbalab

\end{document}

答案1

该类amsart支持\subjclass命令恰恰包含 MSC 代码。

只需在输入关键词的位置附近输入即可

\subjclass[2000]{53C50, 57R25}

(不过此时您可能应该使用 2010 MSC 代码,在这种情况下,请在 AMS 网站上查找正确的代码并将上面一行中的“2000”替换为“2010”。)

相关内容