图下方的水平线

图下方的水平线

我想在图片标题下方添加一条水平线。为此,我使用了以下内容:

\DeclareCaptionFormat{myformat}{#1#2#3\hrulefill}
\captionsetup[figure]{format=myformat}

然后我得到下图:在此处输入图片描述

我只想要“图 3.4”下方的水平线,而不是我的子标题(a)和(b)下方的水平线。

如何删除副标题下的 2 条水平线?

答案1

为 s 设置一种明确的格式,subcaption不使用myformat,而是default

\captionsetup[subfigure]{format=default}

相关内容