Returns a FoscAppoggiaturaContainer.
Appoggiatura container.
Appoggiaturas are played on the beat.
LilyPond positions appoggiaturas immediately before main notes.
LilyPond formats appoggiaturas with a slur but without a slashed stem.
[ ]
Appoggiatura notes.
a = FoscStaff(FoscLeafMaker().(#[60,62,64,65], [1/4]));
c = FoscAppoggiaturaContainer([FoscNote(60, 1/16), FoscNote(62, 1/16)]);
c[0].attach(FoscArticulation('>'));
a[2].attach(c);
a.format;\new Staff {
c'4
d'4
\appoggiatura {
c'16
-\accent
d'16
}
e'4
f'4
}a.show;