Skip to content

LaTeX supports many worldwide languages by means of some special packages. In this article is explained how to import and use those packages to create documents in German.

Introduction

German language has some special characters. For this reason the preamble of your file must be modified accordingly to support these characters and some other features.

\documentclass{article}

%encoding
%--------------------------------------
\usepackage[utf8]{inputenc}
\usepackage[T1]{fontenc}
%--------------------------------------

%German-specific commands
%--------------------------------------
\usepackage[ngerman]{babel}
%--------------------------------------

%Hyphenation rules
%--------------------------------------
\usepackage{hyphenat}
\hyphenation{Mathe-matik wieder-gewinnen}
%--------------------------------------

\begin{document}

\tableofcontents

\vspace{2cm} %Add a 2cm space

\begin{abstract}
Dies ist eine kurze Zusammenfassung der Inhalte des in deutscher Sprache
verfassten Dokuments.
\end{abstract}

\section{Einleitendes Kapitel}
Dies ist der erste Abschnitt. Hier können wir einige zusätzliche Elemente
hinzufügen und alles wird korrekt geschrieben und umgebrochen werden. Falls ein
Wort für eine Zeile zu lang ist, wird \texttt{babel} versuchen je nach Sprache
richtig zu trennen.

\section{Eingabe mit mathematischer Notation}
In diesem Abschnitt ist zu sehen, was mit Macros, die definiert worden,
geschieht.

\[ \lim x =  \theta + 152383.52 \]

\end{document}

GermanEx2.png


There are three packages in this document related to the encoding and the special characters. These packages will be explained in the next sections.

If your are looking for instructions on how to use more than one language in a single document, for instance English and German, see the International language support article.

  Open an example of the babel package in Overleaf

Input encoding

Modern computer systems allow you to input letters of national alphabets directly from the keyboard. In order to handle a variety of input encodings used for different groups of languages and/or on different computer platforms LaTeX employs the inputenc package to set up input encoding. In this case the package properly displays characters in the German alphabet. To use this package add the next line to the preamble of your document:

\usepackage[utf8]{inputenc}


The recommended input encoding is utf-8. You can use other encodings depending on your operating system.

  Open an example of the babel package in Overleaf

Font encoding

To proper LaTeX document generation you must also choose a font encoding which has to support specific characters for German language, this is accomplished by the fontenc package:

\usepackage[T1]{fontenc}


Even though the default encoding works well in German, using this specific encoding will avoid glitches that occur if you copy the text from the generated PDF with some specific characters. The default LaTeX encoding is OT1.

  Open an example of the babel package in Overleaf

Language-specific packages and commands

To extended the default LaTeX capabilities, for proper hyphenation and translating the names of the document elements, import the babel package for the German language.

\usepackage[ngerman]{babel}


As you may see in the example at the introduction, instead of "abstract" and "Contents" the German words "Zusammenfassung" and "Inhaltsverzeichnis" are used.

The new ortographic rules approved in 1998 are supported by babel using ngerman instead of the german parameter, which supports the old ortography.

  Open an example of the babel package in Overleaf

Hyphenation

Sometimes for formatting reasons some words have to be broken up in syllables separated by a - (hyphen) to continue the word in a new line. For example, Mathematik could become Mathe-matik. The package babel, whose usage was described in the previous section, usually does a good job breaking up the words correctly, but if this is not the case you can use a couple of commands in your preamble.

\usepackage{hyphenat}
\hyphenation{Mathe-matik wieder-gewinnen}

The first command will import the package hyphenat and the second line is a list of space-separated words with defined hyphenation rules. On the other side, if you want a word not to be broken automatically, use the {\nobreak word} command within your document.

  Open an example of the babel package in Overleaf

Reference guide

Commands enabled for the German language

Command Description
"a to produce the character ä, can be used with upper-case and lower-case vowels.
"s and "z to produce the German character ß. Works on upper-case and lower-case.
"ck for ck to be hyphenated as k-k.
"ff for ff to be hyphenated as ff-f, this is also implemented for l, m, n, p, r and t.
"| disable ligature at this point.
"- An explicit hyphen sign that allows hyphenation in the rest of the word.
"` Left double quotes, „
"' Right double quotes, “
"< French left double quotes «
"> French right double quotes »

Further reading

For more information see

Overleaf guides

LaTeX Basics

Mathematics

Figures and tables

References and Citations

Languages

Document structure

Formatting

Fonts

Presentations

Commands

Field specific

Class files

Advanced TeX/LaTeX