问题:ieeeconf 中的图形标题自动更改

问题:ieeeconf 中的图形标题自动更改

免责声明:我知道IEEEconf被替换为ieeeconfhttp://ras.papercept.net/conferences/support/files/ieeeconf.zip),但我的目标会议模板仍然是后者,所以我必须使用后者,因为你们中的一些人可能会建议使用前者。(此外,应用任何更改(例如删除)\IEEEoverridecommandlockouts都会扰乱模板的输出格式。)

模板应该自动将标题的字体大小设置为 8 pt。但是,正如您在 MWE 之后所检查的那样,目标字体大小将像正文一样进行编译。

我做错什么了?!

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

\IEEEoverridecommandlockouts

\let\proof\relax
\let\endproof\relax

\usepackage{graphicx}
\usepackage{mathptmx}
\usepackage{amsmath}
\usepackage{amssymb}
\usepackage{amsthm}
\usepackage{mathrsfs}
\usepackage{tabularx}
\usepackage{booktabs}
\usepackage{subfig}

\renewcommand{\qedsymbol}{$\blacksquare$}

\newtheorem{thm}{Theorem}
\newtheorem{lem}{Lemma}
%\newtheorem{prop}[thm]{Proposition}
%\newtheorem{cor}{Corollary}
%\newtheorem{conj}{Conjecture}
\theoremstyle{definition}
\newtheorem{defn}{Definition}
\newtheorem{exmp}{Example}
\newtheorem{rem}{Remark}

\title{\LARGE \bf
XXXXXXXXX
}

\author{Y$^{1}$ and X$^{2}$
%\thanks{*This work was not supported by any organization}
\thanks{$^{1}$Y is with 
        University of Y, 
        {\tt\small [email protected]}}
\thanks{$^{2}$X with the Department of Electrical Engineering, Hell,
        HELL
        {\tt\small [email protected]}}
}

\begin{document}

\maketitle
\thispagestyle{empty}
\pagestyle{empty}

\begin{abstract}

This paper considers ...

\end{abstract}


\section{INTRODUCTION}

\begin{figure}[]
      \centering
%      \includegraphics[scale=0.5]{adj_config}
      \caption{Inductance of oscillation winding on amorphous magnetic core versus DC bias magnetic  field}
      \label{figurelabel}
   \end{figure}

\end{document}

答案1

这个奇怪的问题实际上并不是由于 的缺点造成的ieeeconf,因为这也可能发生在 和 上IEEEconfieeetran(据我检查)

问题似乎源于模板设置和包之间的某种冲突subconfig。当我向其中添加以下选项时,标题的大小会适当地切换为应有的大小8 point::

\usepackage[caption=false,font=footnotesize]{subfig}

在此处输入图片描述

相关内容