LyX ⇒ Making "Quote" style smaller
Making "Quote" style smaller
This is probably a noobish question, but how do I override the default "Quote" paragraph environment in LyX, and make all text of the "Quote" type smaller than the default Quote size?
I know that I can select each quote manually and change the font size, but that would be tedious and go against the whole idea of LaTeX/LyX.
Thank you.
- Ed
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
Making "Quote" style smaller
Code: Select all
\let\quoteOLD\quote
\def\quote{\quoteOLD\small}
- Stefan Kottwitz
- Site Admin
- Posts: 10360
- Joined: Mon Mar 10, 2008 9:44 pm
Making "Quote" style smaller
Juanjo's code above will work, just a comment, it could be done without to define an additional macro \quoteOLD:
Code: Select all
\expandafter\def\expandafter\quote\expandafter{\quote\small}
Re: Making "Quote" style smaller
