Yes. Maybe something is wrong with “Computer Modern” font in my laptop, so I install a new “Computer Modern” font and it looks right now.
And, It seems you got the message because Makie did not find the font in your computer. It`s a general issue in Frequently Asked Questions (juliaplots.org).
If
Makiecan’t find your font, you can do two things:
- Check that the name matches and that the font is in one of the directories in:
using FreeTypeAbstraction; FreeTypeAbstraction.valid_fontpaths
- You can add a custom font path via the environment variable:
ENV["FREETYPE_ABSTRACTION_FONT_PATH"] = "/path/to/your/fonts"
- Specify the path to the font; instead of
font = "Noto", you could writejoindir(homedir(), "Noto.ttf")or something.
Good luck!
