The syntax
\vspace 1\baselineskip
is incorrect, as \vspace
(or, more precisely, the internal version \@vspace
) is a command that takes one argument, so this would be equivalent to
\vspace{1}\baselineskip
which raises an error. However, also the two calls
\vspace{1\baselineskip}
\vskip 1\baselineskip
are not equivalent. The former will not force end-of-paragraph, if given in LR-mode (using LaTeX parlance; horizontal mode in TeX parlance), adding the stated vertical spacing under the line in which it appears in the typeset document. With \vskip
, which is a primitive TeX command, the current paragraph will be terminated.
With \vspace
you have also the *-version, providing a vertical space that won't disappear at a page break; spacing inserted with \vskip
will always disappear at a page break.
In general it's best to issue \vspace
between paragraphs, but the "in-paragraph" feature may come up handy in some cases.
Lastly,
\vskip 1\baselineskip
Plus one
will give some surprises to those who are not accustomed with Plain TeX lingo.
Note for the curious: \vglue 1\baselineskip
ends the paragraph and produces spacing that won't disappear at a page break. It's not documented in the LaTeX manuals, and it's good it isn't.
My guess is that LaTeX is putting extra spaces between your paragraphs, in order to fill to the bottom of each page. Try adding \raggedbottom
to your preamble, and see if that changes anything.
As egreg says, the norm nowadays is to distinguish consecutive paragraphs by indentation, rather than by adding vertical space between them. One reason is that indentation is much more space efficient. More reasons are given by Jan Tschichold in his 1997 book The Form of the Book: Essays on the Morality of Good Design, on p.17:
"The beginnings of paragraphs must be indented. Paragraphs without indent [...] are a bad habit and should be eliminated. The indention – usually one em – is the only sure way to indicate a paragraph. The eye, on reaching the end of a line, is too inert to recognize a tight exit – and in works without indents, even that frequently has to be produced as an afterthought from a flush ‘last’ line. In order of importance, legibility and clarity have to come first; a smooth contour of the typeset page is of lesser importance. Therefore, typesetting without indentions is to be dismissed as an error."
Best Answer
Flexibility.
reveals that
\bigskip
expands to\vspace{\bigskipamount}
so in terms of functionality, there's no difference. However, if after typing a 110 page thesis, you realise that the limit for length set by your university is 100 pages, then simply redefining\bigskipammount
might get you your extra 10 pages in one fell swoop, rather than having to go through and considering each individual\vspace
and remembering why it was there.In general, a good rule is that commands should carry contextual information. So even though
\(\vec{x}\)
and\(\overline{x}\)
might look the same,\(\vec{x}\)
should always be used for vectors and for nothing else. So that when that Big Shot Journal says "House style is that all vectors are purple with yellow dots", a simple\renewcommand{\vec}[1]{\color{purple with yellow dots}#1}
does the trick without messing up any of the rest of the document.Edit: (in response to vanden's request in the comments)
Of course,
\bigskipamount
is a length and in TeX, lengths can be a bit complicated: they don't have to be exact measurements but can include a little flexibility. Examininglatex.ltx
reveals that, unless further modified,\bigskipamount
(and the others) are defined to be:Hopefully, the meaning of the syntax is clear. Thus if you are redefining
\bigskipamount
then it's good practice to also include a little flexibility.If this is new to someone, it's worth knowing that such lengths are called rubber lengths and the extra bit is known as glue so those are the words to look out for in the documentation. (Hope I've gotten that bit right; certainly those two words are associated with this concept.)
Moral of the Story: Flexibility's what you need.
(Probably only people of my generation who grew up in Britain will have a hope of getting the reference there)