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. Classes
  4. scrartcl — Article

scrartcl — Article

The KOMA-Script class for short articles, essays, and scripts.

Last updated May 9, 2026

Overview

scrartcl is the KOMA-Script class for short documents without chapters — essays, research articles, reports, one-pagers.

It replaces the standard article class with:

  • smart type-area calculation via typearea
  • more font-size options (8pt – 36pt)
  • consistent look with other KOMA-Script classes

Minimal example

\documentclass{scrartcl}
\begin{document}
 
\section{Introduction}
My text \dots
 
\section{Conclusion}
 
\end{document}

Key options

\documentclass[
  paper=a4,
  fontsize=11pt,
  DIV=12,
  parskip=half,
  twoside=true,
  numbers=enddot,
  captions=tableheading
]{scrartcl}

Title area

\title{My document}
\author{John Doe \and Anna Example}
\date{\today}
\subject{Subtitle or topic}
\publishers{Publisher, institution}
 
\maketitle

On this page

  • Overview
  • Minimal example
  • Key options
  • Title area