Skip to content
KOMA-Script
  • Home
  • Features
  • Examples
  • Friends
  • News
  • Community
  • Download
KOMA-Script

Versatile LaTeX classes and packages

Reine Portfolio-Übung, vollständig selbst entwickelt. Kein offizieller Auftritt – die Website steht in keinem Zusammenhang mit dem LaTeX-Paket KOMA-Script und wird auch nicht von dessen Entwicklern betrieben.

This is purely a portfolio project, developed entirely on my own. This is not an official site—the website is in no way affiliated with the LaTeX package KOMA-Script and is not operated by its developers.

Project

  • About
  • Features
  • License

Resources

  • Documentation
  • Examples
  • FAQ
  • News

Community

  • CTAN
  • SourceForge
  • Codeberg
  • Mastodon

Legal

  • Imprint
  • Privacy
  • License

© 2026 Moritz Kohm

  • The KOMA-Script Classes
  • The KOMA-Script Packages
  • Installation
  • Getting Started
    • scrartcl — Article
    • scrreprt — Report
    • scrbook — Book & Thesis
    • scrlttr2 — Letters
    • typearea — Type Area
  1. Home
  2. Documentation
  3. Packages
  4. typearea — Type Area

typearea — Type Area

Automatic computation of typographically optimal margins.

Last updated May 9, 2026

Overview

The typearea package computes the type area (the rectangle holding the text) following classical typographic rules. It is automatically loaded by all KOMA classes but can also be used on its own.

Basic principle

Instead of specifying fixed margins, you set a DIV factor:

\documentclass[DIV=12]{scrartcl}

typearea splits the page into DIV equal strips and makes the type area DIV - 3 strips wide, producing harmonic proportions.

Recommended values

PaperDIV recommendation
A4, 10pt8–10
A4, 11pt10–12
A4, 12pt12–15
A5, 10pt6–8

Auto

\documentclass[DIV=calc]{scrbook}

Binding correction

\documentclass[BCOR=12mm,DIV=calc]{scrbook}

Manual setting

\areaset[12mm]{14cm}{22cm}

Standalone usage

\documentclass{article}
\usepackage[DIV=12,BCOR=10mm]{typearea}

typearea is one of the strongest arguments for KOMA-Script — even if you stick with article otherwise, it's worth using.

On this page

  • Overview
  • Basic principle
  • Recommended values
  • Auto
  • Binding correction
  • Manual setting
  • Standalone usage