我正在使用 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}