使用 SCS 会议模板,其中多位作者用 \and 分隔

使用 SCS 会议模板,其中多位作者用 \and 分隔

使用会议提供的样式http://www.scs.org/http://www.scs.org/upload/documents/templates/ConferenceSubmissionLaTeXTemplate.tar.gz),对于多个隶属关系的多个作者,建议使用两列显示作者;但是,覆盖\maketitle命令不允许\and在定义中使用分隔符\author

\documentclass[letterpaper,twocolumn,10pt]{article}
\usepackage{scs}

\begin{document}
\title{Something}
\author{Author1\\
Affiliation1
\and
Author2\\
Affiliation2}
\maketitle
\end{document}

结果是:

! Misplaced \crcr.
\endtabular ->\crcr
\egroup \egroup $\egroup
l.48 \maketitle

\and正确重新定义或覆盖模板命令的作者部分\maketitle以允许多列显示作者的最佳方法是什么?

答案1

样式只是排版您在center环境中输入的内容。“您可以使用多列”的含义并不十分清楚。一种方法是使用环境tabular

\author{
  \begin{tabular}{cc}
  A. Uthor                & W. Riter \\
  University of Somewhere & University of Anytown \\
\end{tabular}
}

给出

在此处输入图片描述

或者他们可能希望将它们列为

\author{
  A. Uthor\\ University of Somewhere \\[2ex]
  W. Riter\\ University of Anytown
}

我添加了一些垂直分隔。\and在这种情况下当然没有任何意义。

相关内容