数字(或其他浮动)后没有缩进的段落

数字(或其他浮动)后没有缩进的段落

有没有办法自动打印图形后面的段落而不缩进(使用 koma 脚本时)?谢谢。

\documentclass[
DIV=11
]{scrreprt} 
\usepackage{blindtext}
\setparsizes{5.5mm}{0pt}{0pt plus 1fil}

\begin{document}
\chapter{MyChapter}
\blindtext %the first par. of this chapter has no indent. Correct.

\blindtext %the second par. has an indent. Correct.

\begin{figure}[htbp]
    \centering
    \rule{2cm}{2cm}
    \caption{MyFigure} 
\end{figure}

\blindtext %this par. is printed after a figure and should have no indent.

\end{document}

在此处输入图片描述

相关内容