https://bugzilla.redhat.com/show_bug.cgi?id=2088665
pstils@gmail.com changed:
What |Removed |Added ---------------------------------------------------------------------------- CC| |pstils@gmail.com
--- Comment #25 from pstils@gmail.com --- I may be wrong but I think this bug - or something very similar - is persisting. According to the Evince -> preferences -> fonts, the Symbol font is being substituted with Noto Sans. I think this font doesn't have all the required glyphs.
@alexviiiag@gmail.com for a work-around, make a .font.conf file in ~/ with the following:
<?xml version="1.0"?> <!DOCTYPE fontconfig SYSTEM "fonts.dtd"> <fontconfig>
<match target="pattern"> <test name="family" qual="any" > <string>Symbol</string> </test> <edit name="family" mode="assign" binding="same"> <string>OpenSymbol</string> </edit> </match>
</fontconfig>
OpenSymbol will need to be installed for this to work: It's in libreoffice-opensymbol-fonts if you need to install it. From the name I'm guessing it comes with libreoffice so maybe we already have it?
Otherwise you can embed the fonts yourself with ghostcript (sudo dnf install ghostscript if you don't have it), with the command:
gs -dNOPAUSE -dBATCH -dPDFSETTINGS=/prepress -sDEVICE=pdfwrite -dEmbedAllFonts=true -sOutputFile=insert_output_file_name_here.pdf -f insert_input_file_name_here.pdf
But it would be good if this could be fixed system-wide at some further upstream point. I don't have the knowledge to say where and how.
Thanks in advance