如何在 IJCAI 格式上添加多位作者

如何在 IJCAI 格式上添加多位作者

我正在写一篇论文IJCAI 会议(希望它会被接受),而且我在插入第二位作者时遇到了一些麻烦。

我通常知道该怎么做,但我必须遵守他们的规则(即样式文件),所以不幸的是我不知道该怎么做。

格式文件可以从以下位置下载:这里

我认为这是应该做的:

\typeout{IJCAI-15 Instructions for Authors}


\documentclass{article}

\usepackage{ijcai15}

\usepackage{times}

\title{IJCAI--15 Formatting Instructions\thanks{These match the formatting instructions of IJCAI-07. The support of IJCAI, Inc. is acknowledged.}}
\author{Qiang Yang \\
Hong Kong University of Science and Technology\\
Hong Kong, China \\
[email protected]
\and
Qiang Yang \\
Hong Kong University of Science and Technology\\
Hong Kong, China \\
[email protected]}

\begin{document}

\maketitle


\end{document}

但显然不是: 在此处输入图片描述

有什么想法吗?我不想破坏他们的风格...

答案1

只需仔细阅读样式文件中的注释(第 66 行及以下行):对于不同机构的作者,您需要使用\And而不是\and

\typeout{IJCAI-15 Instructions for Authors}


\documentclass{article}

\usepackage{ijcai15}

\usepackage{times}

\title{IJCAI--15 Formatting Instructions\thanks{These match the formatting instructions of IJCAI-07. The support of IJCAI, Inc. is acknowledged.}}
\author{Qiang Yang \\
Hong Kong University of Science and Technology\\
Hong Kong, China \\
[email protected]
\And
Qiang Yang \\
Hong Kong University of Science and Technology\\
Hong Kong, China \\
[email protected]}

\begin{document}

\maketitle


\end{document}

(为了避免当前状态下显示的重叠,隶属关系可能会被分成两行)

或者,如果您有来自同一隶属关系的多位作者,您可以按如下方式执行此操作(请注意这里使用\and而不是\And):

\typeout{IJCAI-15 Instructions for Authors}


\documentclass{article}

\usepackage{ijcai15}

\usepackage{times}

\title{IJCAI--15 Formatting Instructions\thanks{These match the formatting instructions of IJCAI-07. The support of IJCAI, Inc. is acknowledged.}}
\author{Qiang Yang \and Yang Qiang \\
Hong Kong University of Science and Technology\\
Hong Kong, China \\
[email protected]
}

\begin{document}

\maketitle


\end{document}

相关内容