]> git.donarmstrong.com Git - lilypond.git/blob - input/test/gmsusd.ly
release: 1.3.7
[lilypond.git] / input / test / gmsusd.ly
1 % the Gm7sus4/D chord prints as Gm/4/7/D
2 % it took me quite a while by experiment to work out how to enter it -- PC
3
4 % perhaps the current modifier approach is too simplistic
5
6 \version "1.3.5";
7
8 gmsus=\notes\relative c \chords{ 
9         g1
10         % Gm7sus4: the hard way
11         g1:3-.4.7
12
13         % another hard way:
14         \notes< g'1 bes c d f >
15
16         % bit easier:
17         g1:m.4.7
18
19         g1:m7.sus
20         g1:m7.sus4
21
22         % and finally:
23         g1:m7.sus/d
24 }
25
26 \score{
27         <
28                 \context ChordNames \gmsus
29                 \context Staff \gmsus
30         >
31 }