[ << Rhythms ] | [Top][Contents] | [ Expressive marks >> ] |
[ < 拍子記号の (分数ではなく) 分子のみを数字で表示する ] | [ Up : Rhythms ] | [ ユーザ定義の拍子記号 > ] |
装飾音符のスタイルを調整する
add-grace-property
, remove-grace-property
を用いて、装飾音符のスタイルを楽譜全体にわたって変更することができます。次の例は
常に上向きとなっている Stem
の向きの設定を無効にして、またデフォルトの符頭をクロスに変更しています。
\relative c'' { \new Staff { $(remove-grace-property 'Voice 'Stem 'direction) $(add-grace-property 'Voice 'NoteHead 'style 'cross) \new Voice { \acciaccatura { f16 } g4 \grace { d16 e } f4 \appoggiatura { f,32 g a } e2 } } }