使用 Subcaption 包更改标题字体

使用 Subcaption 包更改标题字体

我正在使用SIGCHI 会议论文模板,并且遇到了subcaption软件包问题。当我不包含它时,模板会使图形标题看起来像这样(它们应该的样子):

在此处输入图片描述

但是当我将它包含在内时,标题看起来像这样(即使它只是一个常规图形,而不是子图):

在此处输入图片描述

我不知道如何让subcaption包中的标题看起来像模板中应该的那样。这是 MWE:

\documentclass[chi_draft]{sigchi}

\usepackage{subcaption}

\begin{document}
    \begin{figure}
        \centering
        \includegraphics[width=\linewidth]{figures/sigchi-logo.png}
        \caption{test}
    \end{figure}%
\end{document}

关于如何强制将标题字体设置为模板指定的字体,有什么建议吗?

答案1

看起来相当接近。

在此处输入图片描述

\documentclass[chi_draft]{sigchi}    
\usepackage{subcaption}
\captionsetup[figure]{font={bf,small},skip=0.6\baselineskip, labelsep=period}
\begin{document}
    \begin{figure}
        \centering
        \includegraphics[width=\linewidth]{example-image}
        \caption{test}
        \label{fig:gps}
    \end{figure}%
\end{document}

答案2

您会收到以下警告:

Package caption Warning: Unsupported document class (or package) detected,
(caption)                usage of the caption package is not recommended.
See the caption package documentation for explanation.

这只是意味着你应该不是使用caption或基于它的包(如subcaption)与sigchi文档类。

如果您需要子图,则可以使用subfig

\documentclass[chi_draft]{sigchi}

\usepackage[caption=false]{subfig}

\begin{document}

\begin{figure}
\centering
\subfloat[Subfigure]{\includegraphics[width=.3\linewidth]{example-image-a}}\qquad
\subfloat[Subfigure]{\includegraphics[width=.3\linewidth]{example-image-b}}
\caption{test}
\end{figure}

\end{document}

在此处输入图片描述

相关内容