Riporto il codice più minimale possibile che mi dà errore
\documentclass{beamer}
\usetheme[titlepagelogo=logofe,language=italian,color=green,assistantsupervisor=true,
]{TorinoTh}
%Pacchetti matematica
\usepackage{amsmath}
\usepackage{amssymb}
\usepackage{amsfonts}
\usepackage{amsthm}
\usepackage{amscd}
\usepackage{hyperref}
%Prima diapositiva
\begin{frame}
$\textrm{e}^x$
\end{frame}
\end{document}
Se tolgo ^x riesco a compilare. Ho un problema sui caratteri matematici. Qui di seguito l’errore
Process started
Trying to make PK font mathkerncmssi8 at 600DPI
Running miktex-makemf.exe…
miktex-makemf: The mathkerncmssi source file could not be found. Running ttf2pk.exe…
miktex-makepk
:PK font mathkerncmssi8 could not be created
Process exited with error(s)
Miktex l’ho scaricato da http://miktex.org/download e utilizzo Tex Maker come editor. Ho provato anche a fare
\begin{align}
x+y&=10\\
z-y&=1
\end{align}
e mi restituisce questo errore
Process started
Trying to make PK font mathkerncmssi10 at 657DPI
Running miktex-makemf.exe…
miktex-makemf: The mathkerncmssi source file could not be found. Running ttf2pk.exe…
miktex-makepk
:PK font mathkerncmssi10 could not be created
Process exited with error(s)
PS: SONO RIUSCITO!! Ho aggiunto queste due righe nel preambolo
\usepackage{sansmathaccent}
\pdfmapfile{+sansmathaccent.map}
Ora mi sapete dire il motivo dell’errore?