Text FormattingRemove indentation of first paragraph

Information and discussion about LaTeX's general text formatting features (e.g. bold, italic, enumerations, ...)
Post Reply
Hermano
Posts: 14
Joined: Wed Apr 06, 2011 9:10 pm

Remove indentation of first paragraph

Post by Hermano »

Hi all,

When I compile my text, it seems that the first paragraph of my \section has an indentation (such as the other paragraphs). However, as I didn't specified the indentation, I thought Latex will not put an indentation at each first paragraph after a \section? How can I remove this indentation of each paragraph.
I know that this can be done with \noindent, but as my thesis is very long I don't want to repeat this for every new \section.
Last edited by cgnieder on Thu May 16, 2013 1:29 pm, edited 1 time in total.

Recommended reading 2024:

LaTeXguide.org • LaTeX-Cookbook.net • TikZ.org

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

cgnieder
Site Moderator
Posts: 2000
Joined: Sat Apr 16, 2011 7:27 pm

Remove indentation of first paragraph

Post by cgnieder »

This is non-standard behaviour. We need to see a Infominimal working example in order to be able to track the source and provide a solution.

Regards
site moderator & package author
User avatar
Stefan Kottwitz
Site Admin
Posts: 10335
Joined: Mon Mar 10, 2008 9:44 pm

Remove indentation of first paragraph

Post by Stefan Kottwitz »

Check that the indentfirst package is not loaded. Otherwise post at least your header, or as Clemens said, a MWE, which is usually the best.

Stefan
LaTeX.org admin
Hermano
Posts: 14
Joined: Wed Apr 06, 2011 9:10 pm

Re: Remove indentation of first paragraph

Post by Hermano »

Dear cgnieder,

I have uploaded the files. The main file is thesis.tex. The adsphd.cls file is used for formatting my layout. If you compile thesis.tex, you will see that in the Introductory chapter under the first section is an indent.

I also thought that this is a non-standard behaviour, therefore this question.
Attachments
Ch1_introduction.tex
(2.92 KiB) Downloaded 1055 times
adsphd.cls
(58.89 KiB) Downloaded 679 times
thesis.tex
Main file
(5.36 KiB) Downloaded 646 times
User avatar
cgnieder
Site Moderator
Posts: 2000
Joined: Sat Apr 16, 2011 7:27 pm

Remove indentation of first paragraph

Post by cgnieder »

Hmm, that was not really a minimal example... Anyway: the reason are these lines in your preamble:

Code: Select all

%set title spacing
\titlespacing\section{0pt}{12pt plus 4pt minus 2pt}{2pt plus 2pt minus 2pt}
\titlespacing\subsection{0pt}{12pt plus 4pt minus 2pt}{2pt plus 2pt minus 2pt}
Quoting titlesec's manual (titlesec, section 3.2, page 4):
The starred version kills the indentation of the paragraph following the title, except in drop, wrap and runin where this possibility does not make sense.
So you need to use

Code: Select all

%set title spacing
\titlespacing*\section{0pt}{12pt plus 4pt minus 2pt}{2pt plus 2pt minus 2pt}
\titlespacing*\subsection{0pt}{12pt plus 4pt minus 2pt}{2pt plus 2pt minus 2pt}
Regards
site moderator & package author
Hermano
Posts: 14
Joined: Wed Apr 06, 2011 9:10 pm

Re: Remove indentation of first paragraph

Post by Hermano »

Thanks cgnieder for your answer!! This solved my problem ;-)
Post Reply