2列のページに手書きメモを書くための十分なスペースを残す方法

2列のページに手書きメモを書くための十分なスペースを残す方法

PDF ファイルに手書きの注釈を付けられるように、ページに十分な余白を残しておきたいと思います。ドキュメントはtwocolumnsIEEEtran ドキュメント クラスを使用して生成されています。

例えば:

\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テキストがページの大部分を占めています。構造は維持しつつ、手書きの注釈のためのスペースをもっと確保したいと思います。

よろしく

答え1

追加

 \addtolength\oddsidemargin{1cm}

ここに画像の説明を入力してください

関連情報