問題: 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}

ここに画像の説明を入力してください

関連情報