I would like to use the Merida chess font. However, I'm not familiar with Latex fonts and their installation. I'm using Ubuntu 17.10 and TexLive. After reading the readme file for https://ctan.org/pkg/enpassant?lang=de, I did the following:
- copying the files to usr/share/texlive/texmf-dist/*, where * ist the folder as suggested in the readme. I put the .map file to fonts/map/divps/chess/enpassant, as the readme didn't specify an exact location.
- creating chess-merida-board-fig-raw files using ttf2pt1 as suggested by the readme file and putting them to the folders as described in step 1.
- running
mktexlsrandsudo updmap -sys --enable Map=enpassant.map, although I'm not sure what exactly I'm doing there :-) - adding
\setchessboard{boardfontfamily=merida}to my .tex file to get the following error after runningpdflatex -synctex=1 -interaction=nonstopmode pgn2latexGER.tex:kpathsea: Running mktexpk --mfmode / --bdpi 600 --mag 1+0/600 --dpi 600 chess-merida-lsb mktexpk: don't know how to create bitmap font for chess-merida-lsb. mktexpk: perhaps chess-merida-lsb is missing from the map file. kpathsea: Appending font creation commands to missfont.log. (see the transcript file for additional information) !pdfTeX error: pdflatex (file chess-merida-lsb): Font chess-merida-lsb at 600 n ot found ==> Fatal error occurred, no output PDF file produced!
Is there any easier way to install the Merida chess font or how would I do that properly?
chess-enpassant.mapnot enpassant.map. Add \pdfmapfile{=chess-enpassant.map} to your document as test. If it then compiles the installation is correct and you can repeat theupdmap-sysstep to enable the map globally. And sorry but as texlive doesn't contain the package and the fonts can not be put on ctan the installation can not be easier. – Ulrike Fischer Mar 09 '18 at 14:08\pdfmapfile{=chess-enpassant.map}to the documents works :-) . However,sudo updmap -sys --enable Map=chess-enpassant.mapdoesn't seem to work, because without setting the pdfmapfile the document keeps crashing. – Ferdinand Kern Mar 10 '18 at 15:25