Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Double-Spacing an ACM Proceedings Article in LaTeX

Tags:

I am using the acm LaTeX template and I have trouble making my paper double spaced.

My LaTeX document looks like the following:

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

When I compile the above document using pdflatex, I get the following error message on the line that I use the command \doublespacing:

Missing number, treated as zero \doublespacing 
like image 459
reprogrammer Avatar asked Jun 29 '09 02:06

reprogrammer


People also ask

How do I make 1.5 spacing in LaTeX?

Multiply with \linespread , so you get 1.25*1.2 = 1.5, so one-half.

Which of the following command is used for double spacing in LaTeX?

Using \doublespacing in the document preamble.


1 Answers

\linespread{2} should work. Doesn't need any packages, as far as I can tell, and you could change it to 1.9-spacing or 2.1-spacing, if you felt like it...

like image 112
Seamus Avatar answered Nov 13 '22 04:11

Seamus