There will be occasions when you want to create a LaTeX document with a bit more character (style). This simple example uses the math packages to create some eye catching fonts.

\documentclass{article}
\usepackage[utf8]{inputenc}
\title{}\author{}\date{}
% Use Chancery Font
\DeclareMathAlphabet{\mathpzc}{OT1}{pzc}{m}{it}
\usepackage{amsfonts}
\usepackage{mathrsfs}
\usepackage[mathscr]{eucal}
\usepackage{calligra}
\DeclareMathAlphabet{\mathcal}{T1}{calligra}{m}{n}
\begin{document}
\maketitle
\fontsize{12}{12}
\[\mathpzc{ABCDEFGHIJKLMNOPQRSTUVWXYZ}\]
\[\mathpzc{abcdefghijklmnopqrstuvwxyz}\]
\[\mathfrak{ABCDEFGHIJKLMNOPQRSTUVWXYZ}\]
\[\mathfrak{tat - abcdefghijklmnopqrstuvwxyz}\]
\[\mathcal{abc - ABCDEFGHIJKLMNOPQRSTUVWXYZ}\]
\[\mathscr{CAT CALLED abc - ABCDEFGHIJKLMNOPQRSTUVWXYZ}\]
Calligra \fontsize{40}{40}\selectfont$\mathcal{ abc ABC}$
\section*{Introduction}
\fontsize{60}{60}\selectfont$\mathcal{O}$\fontsize{12}{12}nce upon a time, ....
\end{document}
|