我正在写一篇文章,应该使用 IEEE 会议论文集手稿模板来编写。我将所有参考文献放在 ref.bib 中以便于管理。编译后(我使用 TeXnicCenter,因此它还会使用 bibtex 自动编译 .bib),我发现最后两列(包含参考书目的一列)超出了范围。日志中显示:
** 会议论文 ** 在提交最终照相排版稿之前,请记住:
手动均衡论文最后一页两栏的长度;
确保任何 PostScript 和/或 PDF 输出后处理仅使用 Type 1 字体,并且生成过程中的每个步骤都使用适当的纸张尺寸。
\documentclass[conference]{IEEEtran}
\begin{document}
\title{title}
\author{\IEEEauthorblockN{name}
\IEEEauthorblockA{adress}
\maketitle
\begin{abstract}
abstract goes here
\end{abstract}
\IEEEpeerreviewmaketitle
\section{Introduction}
\section{chapter 1}
\section{Conclusion}
The conclusion goes here.
\section*{Acknowledgment}
\nocite{*}
\bibliographystyle{IEEEtran}
\bibliography{ref}
\end{document}
我过去常常\notice{*}
会包含所有参考文献,但在正文中不引用它们。
有什么方法可以快速解决这个问题?提前致谢。