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}

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

関連情報