AJAE 文档类别和作者名称

AJAE 文档类别和作者名称

我正在使用 documentclass ajae。它不显示作者姓名及其所属机构。有人能帮助我吗?非常感谢。

\documentclass[12pt]{ajae}
\usepackage[T1]{fontenc}
\usepackage[utf8]{inputenc}
\usepackage{multicol}
\usepackage{graphicx,caption,varwidth}
\usepackage{setspace}
\doublespacing
\usepackage{times}
\usepackage{abstract}
\title{XYXYXYXYXYXY}

\theauthor{AUTHOR1 \footnote{Institute} \footnote{Institute B} \footnote{Correspondence to } \and Author2\footnotemark[1] \footnotemark[2] }
\begin{document}
\maketitle
\renewcommand{\abstractname}{Acknowledgements}
\begin{abstract}
\end{abstract}
\end{document} 

答案1

该类ajae有一个类选项,author用于显示作者姓名。该类还提供了一个名为的命令\affiliation来添加隶属关系信息。但是,该类不提供添加具有不同隶属关系的多个作者的机制。您可以手动执行此操作(请注意,命令是\author而不是\theauthor):

\documentclass[12pt,author]{ajae}
\usepackage{abstract}
\title{XYXYXYXYXYXY}

\author{AUTHOR X${}^1$ AUTHOR Y${}^2$}
\affiliation{${}^1$Institute A, ${}^2$Institute B} 
\begin{document}
\maketitle
\renewcommand{\abstractname}{Acknowledgements}
\begin{abstract}
\end{abstract}
\end{document}

结果:

在此处输入图片描述


编辑:或者,您可以使用authblk包来指定更接近原始方法的内容。该类ajae定义双倍间距(使用包setspace),这对于多个从属关系行来说看起来不太好,因此在下面的示例中,标题栏切换为单倍间距。

梅威瑟:

\documentclass[12pt,author]{ajae}
\usepackage{abstract}
\usepackage[noblocks]{authblk}
\title{XYXYXYXYXYXY}

\author[1, 2, 3]{AUTHOR1}
\author[1, 2]{AUTHOR2}
\affil[1]{Institute}
\affil[2]{Institute B}
\affil[3]{\textit{corresponding author}}
\begin{document}
\singlespacing
\maketitle
\doublespacing
\renewcommand{\abstractname}{Acknowledgements}
\begin{abstract}
This is the abstract.
\end{abstract}
\end{document}

结果:

在此处输入图片描述

相关内容