Add a blank space between two paragraphs?

How do I add a blank space between two paragraphs? Can I freely set the height of this blank space?

I only need it occasionally, so it doesn’t have to be a global setting.

If you are willing to type this in any time you want an extra space, you could do this a couple ways

No special spacing defined:

= Normal
#lorem(5)

#lorem(5)

Adding an extra line break may be the most simple way to add the height of one line.

= New Line
#lorem(5)

#linebreak()

#lorem(5)

This one uses the v() function which allows you to specify any height you want.

= Spacing
#lorem(5)

#v(1em)

#lorem(5)

2 Likes