You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
|
const vf = new Vex.Flow.Factory({renderer: {elementId: 'main'}});
|
|
const score = vf.EasyScore();
|
|
const system = vf.System();
|
|
|
|
system.addStave({
|
|
voices: [score.voice(score.notes('C#5/q, B4, A4, G#4'))]
|
|
}).addClef('treble').addTimeSignature('4/4');
|
|
|
|
vf.draw();
|