我的main.tex
文件有以下代码,它给出错误消息“包标题警告:未知的文档类(或包),将使用标准默认值。请参阅标题包文档以获取解释。”
但是我没有在代码中使用 caption 或 subcaption 包。有人能告诉我问题出在哪里吗?以下是代码:
\documentclass[conference]{IEEEtran}
\IEEEoverridecommandlockouts
% The preceding line is only needed to identify funding in the first footnote. If that is unneeded, please comment it out.
\usepackage{cite}
\usepackage{amsmath,amssymb,amsfonts}
\usepackage{algorithm}
\usepackage{algpseudocode}
\usepackage{graphicx}
\usepackage{textcomp}
\usepackage{xcolor}
\usepackage{multirow}
\usepackage{longtable}
\usepackage{subfig}
\usepackage{mathtools}
\include{macro.tex}
\def\BibTeX{{\rm B\kern-.05em{\sc i\kern-.025em b}\kern-.08em
T\kern-.1667em\lower.7ex\hbox{E}\kern-.125emX}}
\begin{document}
\title{Some title\\
\thanks{Identify applicable funding agency here. If none, delete this.}
}
\maketitle
\begin{abstract}
Some abstracts
\end{abstract}
\begin{IEEEkeywords}
some keywords
\end{IEEEkeywords}
\input{1. introduction}
\input{2. related works}
\input{3. preliminaries}
\input{4. problem formulation}
\input{5. solution approach}
\input{6. experiments}
\input{7. conclusion}
\input{8. acknowledgments}
\bibliographystyle{plain}
\bibliography{references}
\input{tables and figures}
\end{document}