Text Formatting ⇒ csquotes package question
csquotes package question
This is my first post in this forum, so I hope it is in the right subforum.
I have a question regarding the csquotes package and the blockquote command. When csquotes detects that a blockquote is more than 3 lines (I use the default as of now) it starts to set a block and everything works perfectly fine BUT if the quote is set as a block there are no quotation-marks anymore. How can I change this? Do I need to redefine the quote environment (I am using scrbook of Koma script) or is there any way to let csquotes know that I want quotation-marks even if the is set as a block.
Take care!
totti
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
csquotes package question
Code: Select all
\renewenvironment{quoteblock}{\openautoquote}{\closeautoquote}
csquotes package question
Re: csquotes package question
Sorry but I have another question on this. As mentioned before the quoting marks work perfectly fine.
Now the second thing I want to do is change the size of the quoted block, to 11pt (regular text is 12pt) or \small if that is easier to handle.
Any help would be greatly appreciated.
Best,
totti
csquotes package question
Code: Select all
% The most frequent complaint about the traditional 'quote' and 'quotation'
% environments is that they do not adjust the font size of the quoted text. It
% is very common to set block quotations slightly smaller than the surrounding
% text. This problem is easily remedied:
%
% \newenvironment{smallquote}
% {\begin{quote}\small}
% {\end{quote}}
%
% Because of the way environments are implemented in LaTeX, it is better to
% avoid nesting \begin and \end when including an environment in the definition
% of another one. Another problem with this definition is that \small will
% effectively hard-code the font size. It is advisable to use the \smaller
% command from the relsize package. \smaller will decrease the font size by one
% step (from \normalsize to \small or from \footnotesize to \scriptsize) so
% that this environment will also work as expected when used in a footnote.
%
% Hence our final definition is written as follows:
\newenvironment*{smallquote}
{\quote\smaller}
{\endquote}
% Now we instruct csquotes to use the new environment:
\SetBlockEnvironment{smallquote}
csquotes package question
