General ⇒ Minor nuisance: first line of abstract is indented
Minor nuisance: first line of abstract is indented
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!
Learn LaTeX easily with newest books:
The LaTeX Beginner's Guide: 2nd edition and perfect for students writing a thesis
The LaTeX Cookbook: 2nd edition full of practical examples for mathematics, physics, chemistry, and more
LaTeX Graphics with TikZ: the first book about TikZ for perfect drawings in your LaTeX thesis
- localghost
- Site Moderator
- Posts: 9202
- Joined: Fri Feb 02, 2007 12:06 pm
Minor nuisance: first line of abstract is indented
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
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?...