我正在使用 document 类编写 LaTeX 文档IEEEtran
。但问题是文本超出了页面底部。也就是说,第 1 列中的文本被页面底部截断。有没有什么方法可以解决这个问题?
我的文档结构如下:
\newcommand{\CLASSINPUTbaselinestretch}{1}
\newcommand{\CLASSINPUTinnersidemargin}{1in}
\newcommand{\CLASSINPUTtoptextmargin}{1in}
\documentclass{IEEEtran}
\title{MyTitle}
\maketitle
\begin{document}
\begin{abstract}
\end{abstract}
\bibliographystyle{IEEEtran}
\bibliography{myBib}
\end{document}
答案1
搬去\maketitle
后 \begin{document}
。您需要将任何实际排版的内容放置在环境内document
。