%CSLIS technical report 96-813-021 %An update to CSLIS 94-767-02, the fraktur problem. % %Prepared by Albert Schueller, Walla Walla, WA % \documentclass[12pt]{article} \usepackage{amsfonts} \begin{document} The method expounded in CSLIS 94-767-002 will indeed produce Fraktur letters. However, they will be hoplessly locked in 10pt (which doesn't look good in a 12pt document). One can produce scalable fraktur and blackboard bold characters by loading the amsfonts.sty file. Consider the following example: \begin{verbatim} \documentclass[12pt]{article} \usepackage{amsfonts} \begin{document} \begin{verse} Here's a nice 12pt complex number symbol $\mathbb C$.\\ Here's a beautiful Fraktur R, $\mathfrak R$. \begin{verse} \end{document} \end{verbatim} Which produces the following output: \begin{verse} Here's a nice 12pt complex number symbol $\mathbb C$.\\ Here's a beautiful Fraktur R, $\mathfrak R$. \end{verse} \end{document}