加粗子图的标题

加粗子图的标题

我有一个包含两个子图的图形,我想将子图的标题和标题旁边的 (a) 加粗。如下所示,我想写(a)这是粗体

\documentclass[conference]{IEEEtran}
\usepackage{authblk}
\usepackage{xcolor}
\usepackage{adjustbox}
\usepackage{textcase}
\usepackage{subfig}

\usepackage[margin=10pt,font=footnotesize,justification=centering, labelsep = period].   {caption}

\begin{document}
\begin{figure}[htb!]
\subfloat[\textbf{this is bold}]{\includegraphics[ height=2 in, width=2 in]{Images/ppt3/a.pdf}}
\subfloat[]{\includegraphics[ height=2 in, width=2 in]{Images/ppt3/b.pdf}}
\caption{Visual} 
\end{figure}

\end{document}

答案1

欢迎来到 TeX.SE!

您需要定义(作为subfig包的选项)标题中使用的字体:

\documentclass[conference]{IEEEtran}
\usepackage{authblk}
\usepackage{xcolor}
\usepackage{adjustbox}
\usepackage{textcase}
\usepackage[font={bf, footnotesize}]{subfig} % <---

\usepackage[margin=10pt,
            font=footnotesize,
            justification=centering, 
            labelsep = period]{caption}
            
\usepackage{lipsum}

\begin{document}
\lipsum[66]
    \begin{figure}[htb!]
    \centering
    \setkeys{Gin}{height=2in,width=2 in}
\subfloat[bold sub-caption]{\includegraphics{example-image-a}}

\medskip
\subfloat[]{\includegraphics{example-image-b}}
\end{figure}

\end{document}

在此处输入图片描述

有关更多详细信息,请参阅该subfig包的文档。

相关内容