我正在使用acm LaTeX template,但我无法使纸张以双倍间距排列。

我的LaTeX文档如下所示:

\documentclass{acm_proc_article-sp}
\usepackage{setspace}
\doublespacing
\begin{document}
...
\end{document}

当我使用pdflatex编译上述文档时,在使用\doublespacing命令的行上收到以下错误消息:
Missing number, treated as zero \doublespacing

最佳答案

我相信您想使用\usepackage{doublespace}对文档进行双倍间距。要放入一个单间距块,请在其周围加上\begin{singlespace}\end{singlespace}

引用:http://web.mit.edu/olh/Latex/ess-latex.html

关于latex - 在LaTeX中双间距ACM论文集,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/1056353/

10-13 07:41