1
0
Fork 0
mirror of https://github.com/kastdeur/lilydrum.git synced 2024-09-28 05:54:42 +02:00
lilydrum/.lilydrum/special_sticking.ily
Eric Teunis de Boone e574767762 Moved lilydrum directory
small changes to headers
2015-11-06 15:13:11 +01:00

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