I am looking for a good practice in writing a phd dissertation document, in order to insert block-quotations from an interview inside my document in the results chapter. My solution, right now, is just to insert a quotation environment and to make typography small, with this MWE:
\documentclass{article}
\usepackage[utf8]{inputenc}
\usepackage[spanish]{babel}
\usepackage{csquotes}
\begin{document}
\begin{quotation}
\small this is the quote
\end{quotation}
\end{document}
In my case, in order to put texts from interviews I've done, is there any well-recommended quotation format? (typography size, spacing, etc...)
\begin{quotation} this is the quote \end{quotation}and then program the environmentquotationto give the style you want. If you are having different “quotations”, you may want to defineinterviewquotefor this particular use, and define others for other types, in case you want to differentiate them. – Manuel Feb 22 '17 at 16:45\begin{quotation}...\end{quotation}is the right approach withcsquotes. You can customise the environment used by the\blockquotecommand fromcsquotes, rather than remembering to use\small{}all the time – Chris H Feb 22 '17 at 16:47csquotespackage? – Mico Feb 22 '17 at 16:48