我正在 Texmaker 中撰写论文并使用 documentclass“scrreprt”。为了设计页面,我使用以下代码:
\documentclass[fontsize=11pt,paper=a4,DIV=10,BCOR=12mm,oneside,toc=listof,toc=bibliography]{scrreprt}
在教程中我学会了使用此选项来获得良好的效果。到目前为止,页面看起来不错,但是底部有太多空白。我知道 DIV 选项正在设置每个句子的最佳字数,它避免页面上有太多字。但是,在为论文写了几百页之后,我想更多地利用每页的空白并减少边距。
调整页面设计的最佳和最简便方法是什么?使用几何包会改变一切,不是吗?
答案1
使用最新版本的 KOMA-Script,您可以usegeometry
为类设置选项。然后可以加载包geometry
并更改底部边距。
\documentclass[
%fontsize=11pt,paper=a4,% default
DIV=10,BCOR=12mm,
%oneside,% default
toc=listof,toc=bibliography,
usegeometry% <- added
]{scrreprt}
\usepackage[bottom=3cm]{geometry}% <- added
\usepackage{lipsum}% only for dummy text
\usepackage{layout}% to show the layout
\begin{document}
\layout
\lipsum
\end{document}