I can't get create a font fallback in the the example below, so some input is welcome. It works when using STIX2 only (the commented out part), but somehow the font name is not recognized in the fallback, not when using what is listed by 'mtxrun --script fonts --list --all'. — \definefontfamily[stix-two][mono][Stix Two Text] \definefontfamily[stix-two][math][Stix Two Math] %\setupbodyfont[stix-two,10pt] \definefallbackfamily [mainface] [rm] [Stix Two Text] [range={02070,0208F}] \definefallbackfamily [mainface] [serif] [Stix Two Text] [range={02070,0208F}] \definefallbackfamily [mainface] [mono] [Stix Two Text] [range={02070,0208F}] \definefallbackfamily [mainface] [math] [Stix Two Math] [range={02070,0208F}] \definefontfamily [mainface] [rm] [stix] \definefontfamily [mainface] [math] [stix] \definefontfamily [mainface] [mono] [stix] \setupbodyfont [mainface] \starttext \startformula \startalign \NC 𝑨₀ 0 ₁ 1 ₂ 2 ₃ 3 ₄ 4 ₅ 5 ₆ 6 ₇ 7 ₈ 8 ₉ 9 ₊ + ₋ - ₌ = ₍ ( ₎ )\NR \NC 𝑩⁰ 0 ¹ 1 ² 2 ³ 3 ⁴ 4 ⁵ 5 ⁶ 6 ⁷ 7 ⁸ 8 ⁹ 9 ⁺ + ⁻ - ⁼ = ⁽ ( ⁾ )\NR \stopalign \stopformula \starttyping 𝑨₀ 0 ₁ 1 ₂ 2 ₃ 3 ₄ 4 ₅ 5 ₆ 6 ₇ 7 ₈ 8 ₉ 9 ₊ + ₋ - ₌ = ₍ ( ₎ ) 𝑩⁰ 0 ¹ 1 ² 2 ³ 3 ⁴ 4 ⁵ 5 ⁶ 6 ⁷ 7 ⁸ 8 ⁹ 9 ⁺ + ⁻ - ⁼ = ⁽ ( ⁾ ) \stoptyping 𝑨₀ 0 ₁ 1 ₂ 2 ₃ 3 ₄ 4 ₅ 5 ₆ 6 ₇ 7 ₈ 8 ₉ 9 ₊ + ₋ - ₌ = ₍ ( ₎ ) 𝑩⁰ 0 ¹ 1 ² 2 ³ 3 ⁴ 4 ⁵ 5 ⁶ 6 ⁷ 7 ⁸ 8 ⁹ 9 ⁺ + ⁻ - ⁼ = ⁽ ( ⁾ ) \stoptext —
Hans Åberg schrieb am 03.12.18 um 19:22:
I can't get create a font fallback in the the example below, so some input is welcome. It works when using STIX2 only (the commented out part), but somehow the font name is not recognized in the fallback, not when using what is listed by 'mtxrun --script fonts --list --all'.
— \definefontfamily[stix-two][mono][Stix Two Text] \definefontfamily[stix-two][math][Stix Two Math]
%\setupbodyfont[stix-two,10pt]
\definefallbackfamily [mainface] [rm] [Stix Two Text] [range={02070,0208F}] \definefallbackfamily [mainface] [serif] [Stix Two Text] [range={02070,0208F}]
1. You’re creating the same fallback two times because rm=serif. 2. To pass a range use “-” as separator. \definefallbackfamily [mainface] [serif] [Stix Two Text] [range={02070-0208F}]
\definefallbackfamily [mainface] [mono] [Stix Two Text] [range={02070,0208F}] \definefallbackfamily [mainface] [math] [Stix Two Math] [range={02070,0208F}] \definefontfamily [mainface] [rm] [stix] \definefontfamily [mainface] [math] [stix] \definefontfamily [mainface] [mono] [stix]
Do you have the Stix font on your system? On my system this isn’t the case but I can use the XITS fonts. \definefontfamily [mainface] [serif] [XITS] \definefontfamily [mainface] [math] [XITS Math] Wolfgang
On 3 Dec 2018, at 19:35, Wolfgang Schuster
wrote: Hans Åberg schrieb am 03.12.18 um 19:22:
I can't get create a font fallback in the the example below, so some input is welcome. It works when using STIX2 only (the commented out part), but somehow the font name is not recognized in the fallback, not when using what is listed by 'mtxrun --script fonts --list --all'. — \definefontfamily[stix-two][mono][Stix Two Text] \definefontfamily[stix-two][math][Stix Two Math] %\setupbodyfont[stix-two,10pt] \definefallbackfamily [mainface] [rm] [Stix Two Text] [range={02070,0208F}] \definefallbackfamily [mainface] [serif] [Stix Two Text] [range={02070,0208F}]
1. You’re creating the same fallback two times because rm=serif.
Thanks, I was sort of aware of that, but expected at least one to be valid. :-)
2. To pass a range use “-” as separator.
\definefallbackfamily [mainface] [serif] [Stix Two Text] [range={02070-0208F}]
This was the issue. It works now.
\definefallbackfamily [mainface] [mono] [Stix Two Text] [range={02070,0208F}] \definefallbackfamily [mainface] [math] [Stix Two Math] [range={02070,0208F}] \definefontfamily [mainface] [rm] [stix] \definefontfamily [mainface] [math] [stix] \definefontfamily [mainface] [mono] [stix]
Do you have the Stix font on your system?
Yes, both are in TeX Live 2018, but I have them on the system as well, and the mtxrun command above lists them.
On my system this isn’t the case but I can use the XITS fonts.
\definefontfamily [mainface] [serif] [XITS] \definefontfamily [mainface] [math] [XITS Math]
Is XITS still needed? It had some adaptations I think for OTF, but STIX has been developed since.
participants (2)
-
Hans Åberg
-
Wolfgang Schuster