두 열 페이지에 손글씨 메모를 위한 충분한 공간을 남겨 두는 방법

두 열 페이지에 손글씨 메모를 위한 충분한 공간을 남겨 두는 방법

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}

여기에 이미지 설명을 입력하세요

관련 정보