Springer LNCS 형식의 페이지 여백 줄이기

Springer LNCS 형식의 페이지 여백 줄이기

저는 Springer LNCS 형식을 사용하여 논문을 작성하고 있습니다. 그런데 페이지 여백이 너무 넓은 것 같습니다. 어떻게 적절한 가치로 줄일 수 있습니까? 여기는CLS 스타일 파일. 게시물 크기 제한으로 인해 CLS 파일 자체를 게시할 수 없습니다. 대신 하이퍼링크로 연결되었습니다.

답변1

제 생각에는 표준 이 llncs사실이 아닙니다. 그러나 geometry이를 사용하는 데 방해가 되는 것은 없습니다. 내가 설정한 매개변수를 필요에 맞게 조정하세요. 물론, 그러한 서류를 Springer에 제출하면 거절될 것입니다.

\documentclass{llncs}

\usepackage{geometry}
\geometry{
  a4paper,         % or letterpaper
  textwidth=15cm,  % llncs has 12.2cm
  textheight=24cm, % llncs has 19.3cm
  heightrounded,   % integer number of lines
  hratio=1:1,      % horizontally centered
  vratio=2:3,      % not vertically centered
}

\usepackage{lipsum} % just for the example

\begin{document}
\frontmatter                                    
\pagestyle{headings}                    

\mainmatter                                 

\title{my title}
\titlerunning{my title}

\author{author1 name\inst{1} and  author2 name\inst{1,2}}
\authorrunning{author1 name}

\authorrunning{Short author list}% Part of LEFT running header
\titlerunning{Short title}% Part of RIGHT running header

\institute{University 1 \\
\email{[email protected]}
\and
University 2 \\
\email{[email protected]}
}

\maketitle            

\begin{abstract}
\lipsum*[2]
\end{abstract}

\section{Introduction}

\lipsum

\end{document}

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

관련 정보