減少 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}

在此輸入影像描述

相關內容