Text Formatting ⇒ Linebreaks in verse environment
-
- Posts: 21
- Joined: Mon Apr 21, 2008 3:50 am
Linebreaks in verse environment
Any suggestions?
S.
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
Linebreaks in verse environment
Code: Select all
\documentclass{article}
\begin{document}
\begin{verse}
There was an old party of Lyme \\
Who married three wives at one time. \\
When asked: ‘Why the third?’ \\
He replied: ‘One’s absurd, \\
And bigamy, sir, is a crime.’\\[10em]
There was an old party of Lyme \\
Who married three wives at one time. \\
When asked: ‘Why the third?’ \\
He replied: ‘One’s absurd, \\
And bigamy, sir, is a crime.’
\end{verse}
\newpage
\begin{verse}
There was an old party of Lyme \\
Who married three wives at one time. \\
When asked: ‘Why the third?’ \\
He replied: ‘One’s absurd, \\
And bigamy, sir, is a crime.’\\
\vspace{2cm}
There was an old party of Lyme \\
Who married three wives at one time. \\
When asked: ‘Why the third?’ \\
He replied: ‘One’s absurd, \\
And bigamy, sir, is a crime.’
\end{verse}
\end{document}
-
- Posts: 21
- Joined: Mon Apr 21, 2008 3:50 am
Re: Linebreaks in verse environment
I realised can also use \bigskip et cetera (rusty on LaTeX) — but I will look at the Verse package.
Vspace looks good: flexible.
S.
-
- Posts: 2
- Joined: Wed Jan 13, 2021 4:37 am
Linebreaks in verse environment
and took me a 'wee' time to figure it out (rightfully ! ;P).
Last line should omit
\\
to get the blank lineCould be as 'simple' as this;
Code: Select all
\documentclass{article}
\begin{document}
\begin{verse}
There was an old party of Lyme \\
Who married three wives at one time. \\
When asked: ‘Why the third?’ \\
He replied: ‘One’s absurd, \\
And bigamy, sir, is a crime.’
There was an old party of Lyme \\
Who married three wives at one time. \\
When asked: ‘Why the third?’ \\
He replied: ‘One’s absurd, \\
And bigamy, sir, is a crime.’
\end{verse}
\newpage
\begin{verse}
There was an old party of Lyme \\
Who married three wives at one time. \\
When asked: ‘Why the third?’ \\
He replied: ‘One’s absurd, \\
And bigamy, sir, is a crime.’
There was an old party of Lyme \\
Who married three wives at one time. \\
When asked: ‘Why the third?’ \\
He replied: ‘One’s absurd, \\
And bigamy, sir, is a crime.’
\end{verse}
\end{document}