typescript Vexflow五弦班卓琴

p1iqtdky  于 2022-11-30  发布在  TypeScript
关注(0)|答案(1)|浏览(105)

我一直在使用Vexflow制作吉他标签,但我想用它来制作5弦班卓琴。我可以看到调音中有一个班卓琴设置,它确实可以工作,但它仍然在标签中打印6弦。有没有办法让它只显示5弦?

tabstave notation=true key=C tuning=standardBanjo

notes 1-2-1-3/1|1-1-2-2/1
xtfmy6hx

xtfmy6hx1#

可以使用StaveOptions.num_lines属性设置行数(字符串数

const stave = new TabStave(10, 40, 400, { num_lines: 5 });

// or

system.addStave({
  voices: [...],
  options: { num_lines: 5 },
})

相关问题