Time for action – quoting a scientist
We will quote thoughts of famous physicists.
Create a new document containing these lines:
\documentclass{article} \begin{document} Niels Bohr said: ``An expert is a person who has made all the mistakes that can be made in a very narrow field.'' Albert Einstein said: \begin{quote} Anyone who has never made a mistake has never tried anything new. \end{quote} Errors are inevitable. So, let's be brave trying something new. \end{document}
Typeset to see the result:
What just happened?
Firstly we quoted inline. `
produced a left quotation mark; the character is also called a backtick
. '
gave a right quotation mark. We just typed two such symbols to get double quotes.
Then we used the quote environment to display a quotation. We did not begin a new paragraph for it, because the quotation is already set a bit off. That's the reason we don't use a blank line before and after the environment.
Quoting longer text
When writing short quotations, the quote environment looks...