Fonts & Character Setshandwritten fonts

Information and discussion about fonts and character sets (e.g. how to use language specific characters)
Post Reply
lasse
Posts: 1
Joined: Tue Jan 12, 2010 10:40 am

handwritten fonts

Post by lasse »

How do I write math formulas so they looks handwritten?

Recommended reading 2024:

LaTeXguide.org • LaTeX-Cookbook.net • TikZ.org

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

User avatar
frabjous
Posts: 2064
Joined: Fri Mar 06, 2009 12:20 am

handwritten fonts

Post by frabjous »

You could use Scott Pakin's comicsans package. (Installation instructions in the PDF.)

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}
(Replace "Domestic Manners" with the same of some hand-drawn font you have on your system, or, if you like install it.)

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.
Post Reply