我\floatstyle{boxed}
第一次使用。
我想要编号的带框浮动文本,其段落样式与我的主要文档相同。框和编号工作正常,但框内的行距是单倍行距(不是我的文档默认设置),新段落不缩进,前面也没有空行。这使我的框读起来很乱。为什么?
我正在这样做:
%preamble
\usepackage{float} % enables user to define custom floats
\floatstyle{boxed} % affects the next call to \newfloat (and all subsequent ones until \floatstyle is called again)
\newfloat{BoxFloat}{tbh}{bx}[chapter]
\floatname{BoxFloat}{Box} % set prefix for captions on instances of BoxFloat to 'Box'
%body of document
\begin{BoxFloat}
\label{BoxFloat:subsumption}
\caption{Clarke's subsumption problem}
My first paragraph.
My second paragraph.
\end{BoxFloat}
知道我做错了什么吗?