Hi,
In documents of class article, the first line of the abstract is indented (at least on my computer). I don't think this is right and it is inconsistent with the first lines of other sections, which are not indented.
Do you have that problem? Do you know a fix?
Thanks!
General ⇒ Minor nuisance: first line of abstract is indented
NEW: TikZ book now 40% off at Amazon.com for a short time.

- localghost
- Site Moderator
- Posts: 9202
- Joined: Fri Feb 02, 2007 12:06 pm
Minor nuisance: first line of abstract is indented
Just add the \noindent command right at the beginning of your abstract.
Best regards
Thorsten
Code: Select all
\documentclass[11pt,a4paper,english]{article}
\usepackage[T1]{fontenc}
\usepackage[utf8]{inputenc}
\usepackage{babel}
\usepackage[includeheadfoot,margin=2cm]{geometry}
\usepackage{blindtext}
\author{daantje}
\title{Preventing indentation in the \texttt{abstract} environment}
%\date{\today}
\begin{document}
\maketitle
\begin{abstract}
\noindent
\blindtext
\end{abstract}
\blinddocument
\end{document}
Best regards
Thorsten
How to make a "Minimal Example"
Board Rules
Avoidable Mistakes
¹ System: TeX Live 2025 (vanilla), TeXworks 0.6.10
Board Rules
Avoidable Mistakes
¹ System: TeX Live 2025 (vanilla), TeXworks 0.6.10
Minor nuisance: first line of abstract is indented
It's not a problem, it's a feature. Simply add \noindent right before the text in the abstract.daantje wrote:....Do you have that problem? Do you know a fix?...
1,1,2,3,5,8,13,21,34,55,89,144,233,...
Re: Minor nuisance: first line of abstract is indented
Thanks! That was easy.