mirror of
https://github.com/kastdeur/pipeband-music.git
synced 2024-11-16 08:23:31 +01:00
22 lines
659 B
Text
22 lines
659 B
Text
|
% ================================================= %
|
||
|
% Side Sticking (modifies note, or adds mark) %
|
||
|
% ================================================= %
|
||
|
% Part of lilydrum
|
||
|
backstick = #(define-music-function (parser location notes) (ly:music?)
|
||
|
#{
|
||
|
\temporary \override Staff.NoteHead.style = #'cross
|
||
|
$notes
|
||
|
\revert Staff.NoteHead.style
|
||
|
#})
|
||
|
crossstick = #(define-music-function (parser location notes) (ly:music?)
|
||
|
#{
|
||
|
\temporary \override Staff.NoteHead.style = #'xcircle
|
||
|
$notes
|
||
|
\revert Staff.NoteHead.style
|
||
|
#})
|
||
|
rimshot = #(define-music-function (parser location notes) (ly:music?)
|
||
|
#{
|
||
|
$notes
|
||
|
|
||
|
#})
|