Text Formatting ⇒ Linebreaks in verse environment
-
- Posts: 21
- Joined: Mon Apr 21, 2008 3:50 am
Linebreaks in verse environment
Any suggestions?
S.
Learn LaTeX easily with newest books:
The LaTeX Beginner's Guide: 2nd edition and perfect for students writing a thesis
The LaTeX Cookbook: 2nd edition full of practical examples for mathematics, physics, chemistry, and more
LaTeX Graphics with TikZ: the first book about TikZ for perfect drawings in your LaTeX thesis
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}