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
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
Making "Quote" style smaller
Code: Select all
\let\quoteOLD\quote
\def\quote{\quoteOLD\small}
- Stefan Kottwitz
- Site Admin
- Posts: 10324
- 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
