\section{last paragraph}
Here are some words in the last paragraph. Now a figure is inserted below.
\begin{figure}[H]
\centering
\includegraphics[width=5cm]{...jpg}
\caption[Example .]{.,,}
\label{...}
\end{figure}
Now I want to start a new line after this figure. But there is always indentation at the begining. How to delete this indentation?
I add the usage exmaple:
\documentclass[a4paper,12pt]{article}
\usepackage[english]{babel}
\usepackage{graphicx}
\usepackage{float}
\begin{document}
\section{Paragraph}
Here are some words in the last paragraph. Now a figure is inserted below.
\begin{figure}[H]
\caption{A picture of a gull.}
\centering
\includegraphics[width=0.5\textwidth]{Penguins.jpg}
\end{figure}
Now I want to start a new line after this figure. But there is always indentation at the begining. How to delete this indentation?
\end{document}
Here is the compiled result:





\noindenthere it's a float package bug/ – David Carlisle May 21 '16 at 13:42[H]figure option! With[htb]or[!h]you will obtain nicer and desired results. – Zarko May 21 '16 at 13:44Hit should work the same way as a normal float option and respect paragraph starts. – David Carlisle May 21 '16 at 20:06