Damping sign using a glissando: Difference between revisions
Appearance
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 |
No edit summary |
||
| Line 36: | Line 36: | ||
[[Category:Fretted strings]] | [[Category:Fretted strings]] | ||
[[Category:Symbols and glyphs]] | [[Category:Symbols and glyphs]] | ||
[[Category:Specific notation]] | [[Category:Specific notation]][[Category:Snippet]] | ||
Revision as of 22:51, 21 November 2025
With breakable glissando.
\version "2.24"
%%http://lsr.di.unimi.it/LSR/Item?id=1095
% For version "2.19" and higher: dam = #(define-event-function () () etc.
\paper { tagline = ##f }
dam = #(define-event-function () ()
#{
-\tweak bound-details.right-broken.text ##f
-\tweak bound-details.right.text
#(markup #:translate (cons .7 -1) #:line (#:null #:musicglyph "pedal.*"))
\glissando
#})
{
<< { s1 R1 } \\ { a1 \dam\once\hideNotes e } >>
}
{
<<
{ s1 R1 } \\
{
\once\override Glissando.breakable = ##t
\once\override Glissando.after-line-breaking = ##t
a1 \dam\once\hideNotes\break e
}
>>
}