tlnagy
tlnagy

Reputation: 3474

Inserting Vertical Space in Pandoc Markdown

Is it possible to insert a extra vertical space using Pandoc flavored Markdown? Something that would show up as a blank line in a Word document or a <br> in HTML or \vspace in LaTeX. Or anything equivalent?

My problem is that I don't want a title for my reference list, but this puts my references too close to the preceding paragraph in both Word and in LaTeX.

Upvotes: 38

Views: 31867

Answers (2)

John MacFarlane
John MacFarlane

Reputation: 8937

One way to do it is to insert a paragraph containing just a nonbreaking space.

You can use either of these forms in pandoc:

\_ (where "_" signifies a space)

&nbsp;

Upvotes: 57

Dalip S
Dalip S

Reputation: 41

For pdf, do the following (replace the s with space): \s\s

Upvotes: 2

Related Questions