Returns a trillSpanner.
Trill spanner.
[ ]
Attached unpitched trill spanner to all notes in staff.
a = FoscStaff(FoscLeafMaker().(#[60,62,64,65], 1/8));
a[0..].trillSpanner;
a.show;
Attached pitched trill spanner to all notes in staff.
a = FoscStaff(FoscLeafMaker().(#[60,62,64,65], 1/8));
a[0..].trillSpanner(pitch: "C#4");
a.show;
Attached pitched trill spanner to all notes in staff.
a = FoscStaff(FoscLeafMaker().(#[60,62,64,65], 1/8));
a[0..].trillSpanner(interval: 1);
a.show;
Pitched trill spanner must appear after markup to avoid hiding markup in output.
a = FoscStaff(FoscLeafMaker().(#[60,62,64,65], 1/8));
n = FoscMarkup('Allegro', direction: 'up');
a[0].attach(n);
a[0..].trillSpanner;
a.show;