我希望在页面中留出足够的边距,以便能够在 PDF 文件中手动添加注释。该文档具有twocolumns
并使用 IEEEtran 文档类生成。
例如:
\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[numbers,sort&compress]{natbib}
\usepackage{amsmath,amssymb,amsfonts}
\usepackage{algorithmic}
% \usepackage{graphicx}
\usepackage{ifpdf}
\ifCLASSINFOpdf
\usepackage[pdftex]{graphicx}
% declare the path(s) where your graphic files are
% \graphicspath{{../pdf/}{../jpeg/}}
\graphicspath{{./figs/}}
% and their extensions so you won't have to specify these with
% every instance of \includegraphics
\DeclareGraphicsExtensions{.pdf,.jpeg,.png}
\else
% or other class option (dvipsone, dvipdf, if not using dvips). graphicx
% will default to the driver specified in the system graphics.cfg if no
% driver is specified.
\usepackage[dvips]{graphicx}
% declare the path(s) where your graphic files are
% \graphicspath{{../eps/}}
\graphicspath{{./figs/}}
% and their extensions so you won't have to specify these with
% every instance of \includegraphics
\DeclareGraphicsExtensions{.eps}
\fi
\usepackage[english]{babel}
\usepackage{blindtext}
\begin{document}
\begin{abstract}
\blindtext
\end{abstract}
\Blinddocument
\end{document}
将生成一份文件,其第一页是
文本占据了大部分页面。我希望保留twocolumns
结构,但留出更多空间用于手写注释。
问候