[Tex/LaTex] Font ygoth at 720 not found

fontsmiktexpdftex

This is what happens when i try compile on miktex via pdflatex command my .tex file

I have MikTex 2.9.

This problem doesn't happen with it on another computer with MiKTex 2.9

Both miktex's are just installed.

METAFONT failed for some reason

Sorry, but makepk did not succeed.

!pdfTeX error: pdflatex (file ygoth): Font ygoth at 720 not found
==> Fatal error occurred, no output PDF file produced!

Could you, please, tell what is wrong?

Best Answer

ygoth is a type1 (pfb) font but your miktex seems not to find it. Normally this means that the map file has not been activated correctly. Try if it works if you run on the command line

updmap

You can also load the map-file manually in your document:

\documentclass[11pt]{article}
\pdfmapfile{=gothict1.map}
\begin{document}
\font\test=ygoth
\test abc 
\end{document}