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