This question seems to be everywhere but none of the solutions are working for me.
I am following the github: https://github.com/sebschub/FontPro
I do the following
- Move my .otf files into a directory /otf/
- Run
./scripts/makeall MinionPro - Run
./scripts/install $(kpsewhich -var TEXMFLOCAL) - Run
updmap --enable Map=MinionPro.map
Final output is:
updmap will read the following updmap.cfg files (in precedence order):
/Users/Jack/Library/texlive/2016/texmf-config/web2c/updmap.cfg
/usr/local/texlive/2016/texmf-config/web2c/updmap.cfg
/usr/local/texlive/2016/texmf-dist/web2c/updmap.cfg
updmap may write changes to the following updmap.cfg file:
/Users/Jack/Library/texlive/2016/texmf-config/web2c/updmap.cfg
/Users/Jack/Library/texlive/2016/texmf-config/web2c/updmap.cfg unchanged. Map files not recreated.
updmap: Updating ls-R files.
My Error
kpathsea: Running mktexpk --mfmode / --bdpi 600 --mag 0+382/600 --dpi 382 MinionPro-Regular-osf-l1-t1--base
mktexpk: don't know how to create bitmap font for MinionPro-Regular-osf-l1-t1--base.
mktexpk: perhaps MinionPro-Regular-osf-l1-t1--base is missing from the map file.
kpathsea: Appending font creation commands to missfont.log.
)
!pdfTeX error: /Library/TeX/texbin/pdflatex (file MinionPro-Regular-osf-l1-t1--
base): Font MinionPro-Regular-osf-l1-t1--base at 382 not found
==> Fatal error occurred, no output PDF file produced!
My example
\documentclass{article}
\usepackage{amsmath}
\usepackage{MinionPro}
\begin{document}
\begin{equation*}
a = (b + c) = \big( a + b \big)
\end{equation*}
\end{document}
Edit More verbose error from TeXShop added
otfas requiredMy four fonts from Adobe are
– Giacomo Pope Apr 01 '20 at 18:44MinionPro-Bold.otf, MinionPro-BoldIt.otf, MinionPro-It.otf, MinionPro-Regular.otflualatexorxelatex... – DG' Apr 01 '20 at 19:17Is there a way to basically wipe all textmf and start again?
I tried using this, but it did not fix the error: https://tex.stackexchange.com/questions/255709/why-shouldnt-i-use-getnonfreefonts-to-install-additional-fonts-why-shouldnt-i
– Giacomo Pope Apr 01 '20 at 19:29installscript and look where it puts stuff in the TDS and delete it then. For what it's worth, try this script: https://github.com/chapter09/Install-MinionPro – DG' Apr 01 '20 at 19:48lualatex. Or use Open Type in math: https://tex.stackexchange.com/a/448937/29873 – DG' Apr 01 '20 at 20:13XeLaTeXandLuaLaTeXcompared toPDFLaTeX– GowriSaro Jan 11 '23 at 16:14