Fingering under bow on a trill: Difference between revisions
Appearance
Import snippet from LSR |
m Replace version="2.24.0" with version="2.24" now that the LilyWiki extension supports auto-selecting the latest release in a stable series |
||
| Line 1: | Line 1: | ||
Usage as pseudocode: <code>{ note [script] \fingertrill [direction] "fingers" }</code> | Usage as pseudocode: <code>{ note [script] \fingertrill [direction] "fingers" }</code> | ||
<lilypond version="2.24 | <lilypond version="2.24" full> | ||
%% See also: https://lilypond.community/t/ligature-sur-doigte-de-trille/5581 | %% See also: https://lilypond.community/t/ligature-sur-doigte-de-trille/5581 | ||
Revision as of 18:52, 16 November 2025
Usage as pseudocode: { note [script] \fingertrill [direction] "fingers" }
\version "2.24"
%% See also: https://lilypond.community/t/ligature-sur-doigte-de-trille/5581
\paper { tagline = ##f }
fingertrill =
#(define-event-function (dir fingers) ((ly:dir? UP) string?)
#{
\tweak parent-alignment-X #0
\tweak self-alignment-X #0
\tweak direction $dir
-\markup \tie \finger $fingers
#})
{
\cadenzaOn
\acciaccatura f''8 e''4 \fingertrill "21"
s2.
\acciaccatura f''8 e''4\prallprall \fingertrill "2121"
s2.
\override Script.outside-staff-priority = #0
\acciaccatura f''8 e''4\trill \fingertrill "3121"
}
{
\cadenzaOn
\acciaccatura f''8 e''4 \fingertrill #-1 "21"
s2.
\acciaccatura f''8 e''4_\prallprall \fingertrill #-1 "2121"
s2.
\override Script.outside-staff-priority = #0
\acciaccatura f''8 e''4_\trill \fingertrill #-1 "3121"
}