Text Formatting ⇒ Doubles-pacing, but not in \quote or \verse environment
-
- Posts: 26
- Joined: Thu Apr 02, 2009 3:42 pm
Doubles-pacing, but not in \quote or \verse environment
My thesis guidelines call for block-quotes to be single space, but the rest of the text double-spaced. I have been simply using \doublespacing, but this double-spaces the \quote and \verse environments as well. How do I accomplish this simply?
- localghost
- Site Moderator
- Posts: 9201
- Joined: Fri Feb 02, 2007 12:06 pm
Doubles-pacing, but not in \quote or \verse environment
Just use the \singlespacing command from the setspace package inside these environments.
Best regards
Thorsten¹
Best regards
Thorsten¹
How to make a "Minimal Example"
Board Rules
Avoidable Mistakes[/size]
¹ System: openSUSE 42.2 (Linux 4.4.52), TeX Live 2016 (vanilla), TeXworks 0.6.1
Board Rules
Avoidable Mistakes[/size]
¹ System: openSUSE 42.2 (Linux 4.4.52), TeX Live 2016 (vanilla), TeXworks 0.6.1
-
- Posts: 26
- Joined: Thu Apr 02, 2009 3:42 pm
Re: Doubles-pacing, but not in \quote or \verse environment
Is there any way of doing this from the front end, without editing all of my \quote and \verse environments by hand?
Doubles-pacing, but not in \quote or \verse environment
Add these lines to the preamble:
Code: Select all
\expandafter\def\expandafter\quote\expandafter{\quote\singlespacing}
\expandafter\def\expandafter\verse\expandafter{\verse\singlespacing}
The CTAN lion is an artwork by Duane Bibby. Courtesy of www.ctan.org.
-
- Posts: 26
- Joined: Thu Apr 02, 2009 3:42 pm
Re: Doubles-pacing, but not in \quote or \verse environment
Thanks. It worked great.