Text Formatting ⇒ indents for first line in {quotation}
indents for first line in {quotation}
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
indents for first line in {quotation}
\noindent
before the first word of the text in the quotation environment.Follow howtoTeX on twitter
Re: indents for first line in {quotation}
Re: indents for first line in {quotation}
As it stands, I have to add a \noindent for every new line in my {quotation}, is there a way to make this a permanent configuration?
indents for first line in {quotation}
The indentation that is removed with
\noindent
is the paragraph indentation, which can permanently be turned off with by adding this to your preamble:
Code: Select all
\setlength\parindent{0pt}
Follow howtoTeX on twitter
indents for first line in {quotation}
Right now, I have:
Code: Select all
\begin{quotation} \noindent
Doctor: How are you feeling?
Patient: I have a headache.
Nurse: Here are his charts.
\end{quotation}
Outside of the quotation, I want every paragraph to have an indent. But inside the quotation, however, I do not want any indents. Is that possible without inserting a \noindent in front of every paragraph in the quotation?
- Stefan Kottwitz
- Site Admin
- Posts: 10335
- Joined: Mon Mar 10, 2008 9:44 pm
indents for first line in {quotation}
{quote}
environment instead of {quotation}
. With quote, all paragraph indentations are turned off. Probably Frits did not mention it yet because your first question was just about turning it off at the beginning.Btw. your code is not a

Stefan
Re: indents for first line in {quotation}
Thanks for the tip. Still a rookie here, but I will try to follow the rules from now.
- Stefan Kottwitz
- Site Admin
- Posts: 10335
- Joined: Mon Mar 10, 2008 9:44 pm
Re: indents for first line in {quotation}
Stefan