Time for action – spacing between paragraphs instead of indentation
We like to avoid the paragraph indentation. Instead, we shall separate the paragraphs by some vertical space.
Create copy of the previous example and reuse most of it this way:
\documentclass{article} \usepackage{parskip} \usepackage{url} \begin{document} The authors of the CTAN team listed ten good reasons for using \TeX. Among them are: \TeX\ has the best output. What you end with, the symbols on the page, is as useable, and beautiful, as a non-professional can produce\ldots The original text can be found on \url{ http://www.ctan.org/what_is_tex.html}. \end{document}
See the effect:
What just happened?
The highlighted line shows that we've loaded the parskip package. Its only purpose is to remove the paragraph indentation completely. At the same time, this package introduces a skip between paragraphs. But this package doesn't affect the definition of the quotation environment—you still could use the quote environment.
In order...