Returns a FoscAfterGraceContainer.
After grace container.
LilyPond positions after grace notes at a point 3/4 of the way after the note they follow. The resulting spacing is usually too loose.
Customize afterGraceFraction as shown below.
After grace notes are played at the very end of the note they follow.
Use after grace notes when you need to end a piece of music with grace notes.
After grace notes do not subclass grace notes; but acciacatura containers and appoggiatura containers do subclass grace notes.
LilyPond formats grace notes with neither a slash nor a slur.
Fill grace containers with notes, rests or chords.
Attach after grace containers to notes, rests or chords.
FIXME: after graces seem not to work.
[ ]
After grace notes.
a = FoscLeafMaker().("C4 D4 E4 F4", [1/4]);
l = FoscLilypondLiteral("#(define afterGraceFraction (cons 15 16))");
a[0].attach(l);
c = FoscAfterGraceContainer([FoscNote("C4", 1/16), FoscNote("D4", 1/16)]);
a[1].attach(c);
a.show;prFormatCodeString interpret initial failed: a DoesNotUnderstandError
a = FoscLeafMaker().("C4 D4 E4 F4", [1/4]);
l = FoscLilypondLiteral("#(define afterGraceFraction (cons 15 16))");
a[0].attach(l);
c = FoscAfterGraceContainer([FoscNote("C4", 1/16), FoscNote("D4", 1/16)]);
a[1].attach(c);