]> git.donarmstrong.com Git - lilypond.git/blob - init/chord-modifiers.ly
release: 1.1.13
[lilypond.git] / init / 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         dim     = \musicalpitch { 0 4 -1 }
10         % urg, not actually a chord-modifier, but it works
11         % c7 -> <c bes>, c 7+ -> c b
12         maj     = \musicalpitch { 0 6 1 }
13         % sus4 should delete 2 too...
14         sus     = \musicalpitch { 0 3 0 }
15 }