1
0
Fork 0
mirror of https://github.com/kastdeur/pipeband-music.git synced 2024-09-28 04:34:41 +02:00
pipeband-music/lilydrum/special_sticking.ily
Eric Teunis de Boone c6a9c95632 Decided to put all the music files in a separate git
Added file inclusion in favor of 'header_*' file inclusion
2015-12-18 13:03:14 +01:00

21 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
#})