1

I want double spacing between my lines so I used this:

\doublespacing

Now I also want a single double space between my paragraphs, what should I do in that case?

If I didn't change anything in my tex file, I would get a sort of a double double space (4 spaces). I can't tell that for sure, because I do not know how to measure a double space in tex file, but I am giving an approximation. Thus, to cut this short, if I want one double space between my paragraphs, what should I do?

  • 3
    Please provide a minimum working example (MWE). – A Feldman Feb 01 '16 at 01:09
  • Maybe you want to change \parskip – StrongBad Feb 01 '16 at 01:47
  • 1
    Welcome! By default, the spacing between paragraphs is the same as that between lines. Since this seems to be what you want, you shouldn't have to do anything. If that's not what you get, something in your code is responsible. What exactly nobody can really say without knowing the code. If you do wish to change \parskip (and I've misunderstood your question), then don't change it directly. Load parskip if using a standard class, at least. (Other classes may have better options.) This is assuming you are using LaTeX which we can't tell as you've not told us or shown us. – cfr Feb 01 '16 at 02:14
  • BTW, in LaTeX there is really no such thing a double spacing, just some spaces are bigger than others. – John Kormylo Feb 01 '16 at 03:39

2 Answers2

2

Use a combination of setspace and parskip:

\documentclass{article}
\usepackage{kantlipsum}% for dummy text
\usepackage{parskip}
\usepackage{setspace}
\doublespacing
\parindent=1.5em % or whatever you need
\begin{document}
\kant[1-2]
\end{document}

output of code

Alan Munn
  • 218,180
0

In my experience the trick to precise control over the space between lines is to use \vspace.

Try this:

\documentclass{article}
\usepackage{lipsum}
\begin{document}
\lipsum[1]
\lipsum[2]
\vspace{4mm}
\lipsum[3]
\vspace{8mm}
\lipsum[4]
\end{document}
RTS
  • 439