我正在使用sigplanconf
文档类。即使\maketitle
指定了,也不会显示标题
\documentclass{sigplanconf}
\begin{document}
\title{foo}
\authorinfo{bar}
\maketitle
hello world
\end{document}
答案1
使用提供的课程西格玛计划并减少他们提供的模板,导致需要定义字段\doi{}
来编译显示标题的文件。
最小代码如下
\documentclass{sigplanconf}
\begin{document}
\doi{nnnnnnn.nnnnnnn}
\title{Title Text}
\authorinfo{Name1}
{Affiliation1}
{Email1}
\maketitle
\end{document}