// / only Typst CLI embedded fonts
#set text(
fallback:false,
font:("Libertinus Serif", "DejaVu Sans Mono",
"New Computer Modern", "New Computer Modern Math"))
= English Heading
// font perhaps: Libertinus Serif
= Greek Ηεαδινγ
// font perhaps: Libertinus Serif
= Math Heading \u{1d6ae}\u{1d6c6}\u{1d6c2}...
// font perhaps:New Computer Modern Math
/* Sure, the math heading is gen by
unicode hex calc functions,
not type one by one.
and those functions runs in μs */
Libertinus Serif installed in the system takes precedence over Libertinus Serif embedded in the compiler. The same applies to DejaVu Sans Mono and New Computer Modern (Math) as well. I guess this is the cause?
I can’t answer the question, but maybe the following helps. You can use the command line flag --ignore-system-fonts to prevent the compiler from loading system fonts at all.