使用 subfig 更改图形标题中的字体

使用 subfig 更改图形标题中的字体

我使用了 subfig 包(用于使用 \subfloat)。这取消了图中标题的特殊字体大小。现在它们的大小与普通文本相同。如何解决这个问题?

包含的 Document 类和包包括:

documentclass[letterpaper, 10 pt, conference]{ieeeconf} 


\IEEEoverridecommandlockouts                              
\overrideIEEEmargins
\usepackage{algorithm}
\usepackage{algorithmic}
\usepackage{subfig, graphicx}
\DeclareGraphicsExtensions{.pdf, .jpeg, .png, .jpg}
\usepackage{cite}
\usepackage{amssymb,amsmath}
\floatname{algorithm}{Procedure}
\renewcommand{\algorithmicrequire}{\textbf{Input:}}
\renewcommand{\algorithmicensure}{\textbf{Output:}}

我添加的图是:

\centering
\includegraphics[width=0.4\textwidth,height=0.3\textwidth]
{images/framework.eps}
\caption{Block diagrammic representation of our framework}
\label{fig:framework}
\end{figure}  

如果我删除子图,我就能看到小字体。

答案1

该包caption与 IEEE 类不兼容;您仍然可以加载subfig,但需要

\usepackage[caption=false]{subfig}

它不会重新定义\caption命令,但仍然会提供其主要功能subfig

相关内容