稿件作者在 LaTeX 中使用 AAS 和 authblk 时遇到的问题

稿件作者在 LaTeX 中使用 AAS 和 authblk 时遇到的问题

所以基本上,我的作者和所属机构根本没有显示出来,如果我不编辑 aastex.cls 文件,它就无法正常工作。我所做的编辑是注释掉第 849 行和第 851 行(如下所示的行),这样我就不会收到有关它们已定义的错误。

%\def\author#1{\appdef\@author{\make@author{#1}}}%
%\def\affil#1{\appdef\@author{\make@affil{#1}}}%

我还替换了部分软件包使用情况以包含我使用的一些其他内容,会影响此内容的项目是:

\usepackage[noblocks, affil-it]{authblk}

我希望每个作者姓名后面都有上标,与给定的隶属关系相匹配。使用的代码是:

\documentclass[10pt, preprint2]{aastex}
\shorttitle{short title goes here}
\begin{document}
\title{Proper displayed title here}
\author[1]{Author 1}
\author[1]{Author 2}
\author[2]{Author 3}

\affil[1]{affiliation 1 info, address}
\affil[2]{affiliation 2 info, address}

\keywords{some -- keywords -- go -- here}

\begin{abstract}
some abstract text
\end{abstract}


\section{some section}
some text

\bibliography{references}

\end{document}

理想情况下,我希望有几个符号作为上标,用于额外的从属行,指​​示一些其他信息,例如,\author[1,*]\author[1,\dagger],以及稍后的\affil[\dagger]\affil[*],显示一些信息。

希望有人能帮我解决这个问题!这段代码的问题是,它正确地显示了所有内容,除了作者和所属机构,它们根本就没有显示!只有一点空格,编译时没有出现任何错误。

相关内容