我一直在与烦恼的工作,以使吉他标签,但想使用它的一个5弦班卓琴。我可以看到在调优中有一个班卓琴设置,它可以工作,但是它仍然在选项卡中打印6个字符串。有什么办法让它只显示5根弦吗?
tabstave notation=true key=C tuning=standardBanjo
notes 1-2-1-3/1|1-1-2-2/1发布于 2022-11-28 01:11:23
可以使用StaveOptions.num_lines属性设置行数(字符串)。
const stave = new TabStave(10, 40, 400, { num_lines: 5 });
// or
system.addStave({
voices: [...],
options: { num_lines: 5 },
})https://stackoverflow.com/questions/74594976
复制相似问题