将 subfloat 子标题标签设为粗体

将 subfloat 子标题标签设为粗体

我正在使用 subfig 包管理我的图形。如何以粗体显示子标题标签:

\documentclass{article}
\usepackage{subfig}
\begin{document}
\begin{figure}[htb]
\centering
\subfloat[Caption 1]{\fbox{\parbox{0.5\textwidth}{\hfill}}}
\subfloat[Caption 2]{\fbox{\parbox{0.5\textwidth}{\hfill}}}
\caption{Big Caption}
\end{figure}
\end{document}

我想(A)(二)而不是(a)和(b)

答案1

这里是:

\documentclass{article}

\usepackage{subfig}

\begin{document}

\begin{figure}[htb]
\centering\captionsetup[subfloat]{labelfont=bf}
\subfloat[Caption 1]{\fbox{\parbox{0.5\textwidth}{\hfill}}}
\subfloat[Caption 2]{\fbox{\parbox{0.5\textwidth}{\hfill}}}
\caption{Big Caption}
\end{figure}

\end{document} 

相关内容