]> git.donarmstrong.com Git - lilypond.git/blob - input/test/gmsusd.ly
8535e0663f36f0c58c7f9821d64f2294eaf7be65
[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.1.52";
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         \property Score.chordInversion = 1 
24         g1-m7.sus/d
25 }
26
27 \score{
28         <
29                 \context ChordNames \gmsus
30                 \context Staff \gmsus
31         >
32 }