简体   繁体   中英

Changing Margin in LaTeX

I'm new to LaTex and I wanted to know how I can change the Margins of my scrreport so that the chapter title, text and basically everythin starts a bit higher and ends a bit lower. In my opinion there is too much empty space before anything starts.

If I use this simple example:

\documentclass[12pt,a4paper,twoside]{scrreport}
\usepackage{blindtext}

\begin{document}

\chapter{First Chapter}
\blindtext

\end{document}

I think the margins from top and bottom are too big. So i want everything to move up a little bit. Thanks!

Method 1:

Choose one of the predefined layouts. You'll find a list of available options in the koma script documentation.

在此处输入图像描述

\documentclass[12pt,a4paper,twoside,DIV=15]{scrreport}

\usepackage{blindtext}

\begin{document}

\chapter{First Chapter}
\blinddocument

\end{document}

Method 2:

Setting up the text area manually. You should be really sure that you know what you are doing to get an aesthetically pleasant result.

\documentclass[12pt,a4paper,twoside]{scrreport}

\areaset[current]{168.00mm}{250mm}

\usepackage{blindtext}

\begin{document}

\chapter{First Chapter}
\blinddocument

\end{document}

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM