如何正确选择标题包的选项?“图”加粗,但“(a)”和“(b)”不加粗

如何正确选择标题包的选项?“图”加粗,但“(a)”和“(b)”不加粗

这是我当前选择的字幕包选项:

\usepackage[labelfont={rm,md,bf},textfont={rm,md,sl}]{caption}

结果如下:

在此处输入图片描述

我想让“图 5.2”使用粗体字体,但不要使用“(a)”和“(b)”。这可能吗?

答案1

您可以使用\captionsetup[sub]{...}来更改子标题的属性:

在此处输入图片描述

\documentclass{article}

\usepackage{subcaption}
% Configure main captions
\captionsetup     {labelfont={rm,md,bf},textfont={rm,md,sl}}
% Configure subcaptions
\captionsetup[sub]{labelfont={rm,md   },textfont={rm,md,sl}}

\begin{document}

\begin{figure}
  \centering
  \begin{subfigure}{2cm}
    \caption{bla 1}
  \end{subfigure}
  \begin{subfigure}{2cm}
    \caption{bla 2}
  \end{subfigure}
  \caption{bla}
\end{figure}

\end{document}

相关内容