我正在尝试使用从以下位置获得的 ACM Sig Alternate Template 创建一个简单的文档这里。删除样板版权文本后,章节标题(例如简介)后的文本与标题重叠。我正在使用 Overleaf 来呈现文档。
图像如下所示:
我做错什么了吗?
梅威瑟:
\documentclass{sig-alternate}
\begin{document}
\title{Testing}
\numberofauthors{3}
%
\author{
John Doe\\
\email{[email protected]}
}
\maketitle
\begin{abstract}
test code
\end{abstract}
\section{Introduction}
fish farms
\bibliographystyle{abbrv}
\bibliography{sigproc}
\end{document}
答案1
我也遇到了 ACM 的 sig-alternate-per 模板的相同问题。在 cls 文件中,我更改了部分定义,对我来说
\def\section{%
\@startsection{section}{1}{\z@}{-10\p@ \@plus -4\p@ \@minus -2\p@}% GM
{4\p@}{\baselineskip 14pt\secfnt\@ucheadtrue}%
}
问题在于{4\p@}
识别节标题后的要点。如果您将其设置为 14,那么一切就都好了,文本将不再与标题重叠。其他子节也必须进行相同的更改,等等。
我无法测试你的课程,因为链接不再有效。