]> git.donarmstrong.com Git - lilypond.git/blob - ly/chord-modifiers.ly
ef3942dd66576cf82a7927e22077c095c1b5be33
[lilypond.git] / ly / chord-modifiers.ly
1 %{
2  chord modifiers
3 %}
4
5 \chordmodifiers {
6         m       = \musicalpitch { 0 2 -1 }
7         min     = \musicalpitch { 0 2 -1 }
8         aug     = \musicalpitch { 0 4 1 }
9         % urg!
10         % dim   = \musicalpitch { -100 4 -1 }
11         dim     = \musicalpitch { -100 2 -1 }
12         % urg, not actually a chord-modifier, but it works
13         % c7 -> <c bes>, c 7+ -> c b
14         maj     = \musicalpitch { 0 6 1 }
15         % sus4 should delete 2 too...
16         sus     = \musicalpitch { 0 3 0 }
17 }