In one section of my document I have several equations. Due to the normal separation of paragraphs trough the equations I do not have any further passages in the text. Somewhere in the middle of the section I want to include a figure. As the section is quite long I don't want to set the \begin{figure} ... \end{figure} at the end of the section as the graphic would not be in the right position.
But if I am entering the graphic as shown in the example I get an indent at the beginning of the next paragraph after the equation.
Is there any way to prevent this?
\documentclass[parskip=full]{scrbook}
\usepackage{lipsum}
\usepackage{graphicx}
\begin{document}
\lipsum[1]
%
\begin{equation}
1+2=3
\end{equation}
%
\begin{figure}
\centering
\includegraphics[width=0.4\linewidth]{example-image-a}
\end{figure}
%
\lipsum[2]
\end{document}
Solution:
Commenting the line \end{figure}% prevents the extra space at the beginning of the new paragraph.

\lipsumwith\lipsum*and commenting out the end-of-line after\end{figure}(i.e., write\end{figure}%). – GuM Apr 18 '17 at 00:50\end{figure}%just did it! Thanks a lot. – kash Apr 18 '17 at 06:24