mirror of
https://github.com/kastdeur/pipeband-music.git
synced 2024-11-16 00:13:32 +01:00
e574767762
small changes to headers
21 lines
659 B
Text
Executable file
21 lines
659 B
Text
Executable file
% ================================================= %
|
|
% 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
|
|
|
|
#})
|