[Tex/LaTex] What does “\lettrine” do

lettrine

I have seen the command a few times and I want to know what \lettrine does and whether you have to use a package in order for it to work.

Best Answer

From the lettrine package documentation:

Adding \usepackage{lettrine} in the preamble of a document defines the command \lettrine, the simplest use of which is \lettrine{<letter>}{<text>}. It produces a dropped capital <letter> (2 lines high), followed by typeset in small caps, and the rest of the paragraph is wrapped around the dropped capital.

A little example:

\documentclass{article}
\usepackage{lettrine}
\usepackage{lipsum}

\begin{document}

\lettrine[lraise=0.1, nindent=0em, slope=-.5em]{V}{oici} un exemple \lipsum[2]

\end{document}

enter image description here

Related Question