我真的很想使用我拥有的可变字体的轻量级(火车票)。此功能目前在 Context 中有效吗?我在网上找到了一个示例来让它工作,但我自己无法让它工作。
这是示例:https://gist.github.com/stone-zeng/dcdf3489b0efceb885dcee9fb82df30e
使用语法是否发生了改变?
答案1
来自 Context 邮件列表:
\starttext
Test Test
\definefont[bahnlight][name:bahnschriftlight*default]
\definefont[bahnsemilight][name:bahnschriftsemilight*default]
\definefont[bahnregular][name:bahnschriftregular*default]
\startMPcode
picture pic;
pic := thelabel(textext("\bahnlight This is Bahnschrift light in Metafont 0123456789"), (0, 0));
draw pic;
pic := thelabel(textext("\bahnsemilight This is Bahnschrift semilight in Metafont 0123456789"), (0, 15));
draw pic;
pic := thelabel(textext("\bahnregular This is Bahnschrift regular in Metafont 0123456789"), (0, 30));
draw pic;
\stopMPcode
\stoptext