Start TrillSpanner with UpPrall glyph: 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: | ||
Adds an upprall glyph to the beginning of a trillspanner. | Adds an upprall glyph to the beginning of a trillspanner. | ||
<lilypond version="2.24 | <lilypond version="2.24"> | ||
%- Start a Trill Spanner with UpPrall | %- Start a Trill Spanner with UpPrall | ||
%- Solution by Pierre Perol-Schneider | %- Solution by Pierre Perol-Schneider | ||
Revision as of 18:55, 16 November 2025
Adds an upprall glyph to the beginning of a trillspanner.
\version "2.24"
%- Start a Trill Spanner with UpPrall
%- Solution by Pierre Perol-Schneider
%- LSR snippet by Javier Ruiz-Alma 2/6/2015
\relative c'' {
\time 2/4
\override TrillSpanner.bound-details.left.text =
\markup \concat {
\raise #1.0
\smaller
\musicglyph "scripts.upprall"
\hspace #-0.6
}
c2\startTrillSpan ~ c ~ c\stopTrillSpan
}