blob: 29c9f2e27a3614946e7a27b512b57712f34f51f5 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
|
\documentclass[a4paper,12pt]{article}
\usepackage{ae}
\usepackage[T1]{fontenc}
\begin{document}
\begin{itemize}
\item Proper kerning for German-style quotes:\par
\begin{center}
\Large \quotedblbase W`` \quotedblbase V`` \quotedblbase O``
\quotesinglbase W` \quotesinglbase V` \quotesinglbase O`
\end{center}
\item Without kerning:\par
\begin{center}
\Large \quotedblbase{}W{}`` \quotedblbase{}V{}`` \quotedblbase{}O{}``
\quotesinglbase{}W{}` \quotesinglbase{}V{}` \quotesinglbase{}O{}`
\end{center}
\item Lowered umlaut dots:
\begin{center}
\Large \"a \"o \"u i
\end{center}
\end{itemize}
\end{document}
|