\address 和 \email。未定义的控制序列

\address 和 \email。未定义的控制序列

首先,我尝试寻找类似的问题,但除了组合类(我不了解这个类)之外,我都失败了。这是我的代码

\documentclass{article}
\usepackage{amssymb}
\usepackage{amsmath}
\usepackage{graphicx}
\usepackage{setspace}
\newtheorem{theorem}{Theorem}
%\pdfoutput=1
\renewcommand{\baselinestretch}{1} 
\newtheorem{case}{Case}
\newtheorem{conclusion}{Conclusion}

\newtheorem{corollary}{Corollary}

\newtheorem{definition}{Definition}

\newtheorem{lemma}{Lemma}

\newtheorem{proposition}{Proposition}

\newenvironment{proof}[1][Proof]{\noindent\textbf{#1.} }{\ \rule{0.5em}{0.5em}}

\begin{document}

\title{XXX}

\author{XXX}
\address{AAAA}

\maketitle 

该文件包含“未定义的控制序列”。此外,我想添加我的电子邮件。提前致谢。

答案1

你可以做这样的事情

\documentclass{article}
\usepackage{authblk}
\usepackage{hyperref}
%
\newcommand*{\email}[1]{%
    \normalsize\href{mailto:#1}{#1}\par
    }
\title{Here is the title}
\author{An author}
\affil{This is some institute\\ \email{[email protected]}}

\begin{document}
\maketitle
\end{document}

在此处输入图片描述

相关内容