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

在此輸入影像描述

相關內容