Text FormattingConsecutive linebreaks

Information and discussion about LaTeX's general text formatting features (e.g. bold, italic, enumerations, ...)
Post Reply
kultiza
Posts: 2
Joined: Sun Sep 13, 2009 8:29 pm

Consecutive linebreaks

Post by kultiza »

How do I go on about adding X number of consecutive linebreaks?

Recommended reading 2024:

LaTeXguide.org • LaTeX-Cookbook.net • TikZ.org

NEW: TikZ book now 40% off at Amazon.com for a short time.

And: Currently, Packt sells ebooks for $4.99 each if you buy 5 of their over 1000 ebooks. If you choose only a single one, $9.99. How about combining 3 LaTeX books with Python, gnuplot, mathplotlib, Matlab, ChatGPT or other AI books? Epub and PDF. Bundle (3 books, add more for higher discount): https://packt.link/MDH5p

Stefan Kottwitz
Site Admin
Posts: 10324
Joined: Mon Mar 10, 2008 9:44 pm

Consecutive linebreaks

Post by Stefan Kottwitz »

Hi kultiza,

welcome to the board!
You could use \vspace, for instance

Code: Select all

\vspace{5\baselineskip}
or some other value using other units.

Stefan
LaTeX.org admin
kultiza
Posts: 2
Joined: Sun Sep 13, 2009 8:29 pm

Re: Consecutive linebreaks

Post by kultiza »

Thanks, Stefan! Works like a charm :)
lalop
Posts: 63
Joined: Fri Sep 11, 2009 11:25 pm

Re: Consecutive linebreaks

Post by lalop »

This doesn't work for arbitrary X but if, for example, you're just looking to make a subsectional break like the stuff in books, I'd use

\subsection*{}
User avatar
localghost
Site Moderator
Posts: 9202
Joined: Fri Feb 02, 2007 12:06 pm

Consecutive linebreaks

Post by localghost »

lalop wrote:This doesn't work for arbitrary X but if, for example, you're just looking to make a subsectional break like the stuff in books, I'd use

\subsection*{}
You should note that in case that the length \parindent is different from Zero this yields an inconsistent new paragraph which is not indented.
Post Reply