Fonts & Character Sets ⇒ handwritten fonts
handwritten fonts
Learn LaTeX easily with newest books:
The LaTeX Beginner's Guide: 2nd edition and perfect for students writing a thesis
The LaTeX Cookbook: 2nd edition full of practical examples for mathematics, physics, chemistry, and more
LaTeX Graphics with TikZ: the first book about TikZ for perfect drawings in your LaTeX thesis
handwritten fonts
I really really hate that font.
Another option would be to compile with XeLaTeX, and use the mathspec package to pick some other handdrawn font, e.g.:
Code: Select all
\documentclass{article}
\usepackage[english]{babel}
\usepackage{blindtext}
\usepackage{mathspec}
\usepackage{xltxtra,xunicode}
\defaultfontfeatures{Mapping=tex-text}
\setmathfont(Digits,Latin){Domestic Manners}
\begin{document}
\blindmathpaper
\end{document}
That would only give you the letters and digits in the font, though, not the actual mathematical operators.
I don't know whether or not it's possible to use the emerald package fonts in math mode. Perhaps I'll investigate.