I get the following error when I try to typeset a beamer document.
kpathsea: Running mktexpk --mfmode / --bdpi 600 --mag 0+525/600 --dpi
525 mathkerncmssi8 gsftopk: fatal: map file `cid-base.map' not found.
mktexpk: don't know how to create bitmap font for mathkerncmssi8.
mktexpk: perhaps mathkerncmssi8 is missing from the map file.
kpathsea: Appending font creation commands to missfont.log. ) !pdfTeX
error: pdflatex (file mathkerncmssi8): Font mathkerncmssi8 at 525 not
found ==> Fatal error occurred, no output PDF file produced!
But if I remove sansmathaccent.sty from the TeX Live tree, the document typesets fine.
Here is a minimal working example.
\documentclass[10pt]{beamer}
\begin{document}
\begin{frame}{A very short beamer document}
$e^{i\pi}+1=0$
\end{frame}
\end{document}
\documentclass[10pt]{beamer} \usepackage{sansmathaccent} \begin{document} \begin{frame}{A very short beamer document} $e^{i\pi}+1=0$ \end{frame} \end{document}, perhaps an update is in order – cmhughes May 14 '12 at 20:16map-file has not been activated (probably due to the knownupdmap/udpmap-sysconfusion). Try if it works if you add\pdfmapfile{+sansmathaccent.map}to your document. If yes you will have to find out how to get the map-entries permanantly in yourpdftex.map. – Ulrike Fischer May 15 '12 at 07:41\pdfmapfile{+sansmathaccent.map}added. I then ranupdmap-sys --enable Map=sansmathaccent.mapand still had the problem, but then I discovered a localpdftex.mapfile, and the problem went away once I removed the local file. Thanks again, everyone. – Alan Simpson-Vlach May 15 '12 at 12:12