Julian schrieb:
[...]
i found the "\tweak #'style #'cross" works indide < >
e.g:
<f, \tweak #'style #'cross b e>4 d
Here, it would be possible to define versions for deadNotes and palmMute
that
works inside < ... > constructs, i.e.
chordNoteDeadNote =
#(define-music-function (parser location note) (ly:music?)
(set! (ly:music-property note 'tweaks)
(acons 'style 'cross (ly:music-property note 'tweaks)))
note)
chordNotePalmMute =
#(define-music-function (parser location note) (ly:music?)
(set! (ly:music-property note 'tweaks)
(acons 'style 'do (ly:music-property note 'tweaks)))
note)
so you can write
< a \chordNoteDeadNote e' \chordNoteDeadNote a \chordNoteDeadNote c e >
< a \chordNotePalmMute e' \chordNotePalmMute a \chordNotePalmMute c e >
these definitions could be easily included, but I don't know (yet) to do
the same
for tablature, because here - as you pointed out, the numbers still appear
(which is okay for palmMute, but not for a deadNote).
Marc
it only affect the score.. not sure if is there any way to change X instead of
number by style.
Cheers,
Julian
_______________________________________________
lilypond-user mailing list
lilypond-user@gnu.org
http://lists.gnu.org/mailman/listinfo/lilypond-user
_______________________________________________
lilypond-user mailing list
lilypond-user@gnu.org
http://lists.gnu.org/mailman/listinfo/lilypond-user