I am using MacTeX and wish to use the Calligra font. I have confirmed via Tex Live Utility that the calligra package is installed. However, when I try to use it, I get the error:
!pdfTeX error: /usr/local/texlive/2010/bin/x86_64-darwin/pdflatex (file callig15): Font callig15 at 1195 not found
An MWE is provided:
Code: Select all
\documentclass{beamer}
\usepackage{calligra}
\usetheme{default}
\begin{document}
\begin{frame}{Testing}
\calligra
\begin{itemize}
\item First point.
\item Second point.
\item Third point.
\item Fourth point.
\end{itemize}
\end{frame}
\end{document}