我有以下软件包:
\documentclass[conference]{IEEEtran}
\usepackage{caption}
\usepackage[caption=false,font=footnotesize]{subfig}
这是因为 IEEE 使用自己的标题样式。我的浮动双列图代码是:
\begin{figure*}[!t]
\centerline
\subfloat[Case A]{\label{fig_first_case}\includegraphics[width=3.1in]{Zones_A.jpg}}
\qquad
\subfloat[Case B]{\label{fig_second_case}\includegraphics[width=3.1in]{Zones_B.jpg}}
\caption{This is just an example.}
\label{zones}
\end{figure*}
但输出是:
从图 A 中可以看出,子标题很混乱。如何修复?
谢谢。
答案1
我不确定您为什么要使用\centerline
,但\centering
对于您而言,使用可能是更好的方法。