如何从 sbc-template 中删除作者?

如何从 sbc-template 中删除作者?

我需要使用sbc-template模板提交不带作者信息的论文,但是当我注释命令时模板会抛出错误\author,当我使用时\author{}模板¹会在标题下方打印。有什么建议可以解决这个问题吗?

我正在使用sbc-template

\usepackage{sbc-template}

答案1

您说的额外内容¹由模板放置在\address字段之前,所以我想您也删除了它。地址字段前面是\inst{\instnum}。要删除它,您\instnum也可以将其重新定义为空:

\documentclass[12pt]{article}
\usepackage{sbc-template}

\title{Instructions for Authors of SBC Conferences\\ Papers and Abstracts}

\author{} % Clearing \author field
\address{} % Clearing \address field
\def\instnum{} % Making \instnum empty

\begin{document}

\maketitle

\begin{abstract}
  This meta-paper describes the style to be used in articles and short papers
  for SBC conferences. For papers in English, you should add just an abstract
  while for the papers in Portuguese, we also ask for an abstract in
  Portuguese (``resumo''). In both cases, abstracts should not have more than
  10 lines and must be in the first page of the paper.
\end{abstract}

\end{document}

输出:

在此处输入图片描述

答案2

为了避免移动作者和所属机构下方的文本(即,在原来的位置保留一个空白),您可以\phantom{}在每行作者和所属机构处使用,然后使用\def\instnum{}删除所属机构编号。

相关内容