Cross-References and Links

Initials

How to create drop caps and large initial letters in LaTeX using the lettrine package.

A common feature of literary works is initials (drop caps), i.e. decorative first characters on the first page of a chapter or section.

The lettrine Package

The lettrine package is the standard for creating drop caps in LaTeX. It is highly configurable and available in all major TeX distributions.

\usepackage{lettrine}

Basic Usage

\lettrine{T}{his} is the first sentence of the chapter.

This creates a large "T" spanning 2 lines, with "his" in normal text.

Options

\lettrine[lines=3, lhang=0.33, loversize=0.1]{T}{his}
OptionDescriptionDefault
linesNumber of lines the drop cap spans2
lhangFraction of the letter width that hangs into the margin0
loversizeExtra height as fraction of capital letter height0
nindentIndentation of the following lines0.5em
findentIndentation of the text next to the drop cap0

Font Customization

\renewcommand{\LettrineFont}{\normalfont\bfseries\Huge}

Multiple Drop Caps

\lettrine[lines=2]{A}{} chapter\ldots

\lettrine[lines=2]{B}{} eginning\ldots

Color

\usepackage{xcolor}
\renewcommand{\LettrineFont}{\color{red!80!black}\normalfont\bfseries}

Alternative: soul Package

For simpler drop caps without the full lettrine feature set:

\usepackage{soul}
\newcommand{\dropcap}[1]{\Huge\textbf{#1}}

Further Reading

  • CTAN: lettrine
  • texdoc lettrine for full documentation
Copyright © 2026