]> git.donarmstrong.com Git - lilypond.git/blob - input/test/chords.ly
release: 1.1.24
[lilypond.git] / input / test / chords.ly
1 \version "1.0.14";
2
3 %{
4 Would this be acceptable/good enough/convenient for entry?
5
6    Convention/Standard    Lily
7    
8    C#                     cis
9    Cb                     ces
10    Cm; Cmin               c-3-; c-m; c-min
11    Caug                   c-5+; c-aug;
12    Cdim                   c-5-; c-dim
13    Cmaj7                  c-7+; c-maj
14    C7                     c-7
15    Csus; Csus4            c-4; c-sus
16 %}
17
18 scales = \notes \transpose c'' \chords{
19                 %<c1 e g>
20                 c1-m c-min c4-dim c-aug c-sus c-maj
21                 c1-6 c4-7 c-9 c-11 c-13
22                 c1-7^5 c-13^5^7^9^11
23                 % c1-7^5 c-13^5
24                 c1 g d a e b fis
25                 c1 f bes es as des ges
26         }
27
28 keys = \notes{
29                 s1
30                 s1 s1 s1
31                 s1 s1
32                 s1
33                 \key g; s1
34                 \key d; s1 
35                 \key a; s1 
36                 \key e; s1 
37                 \key b; s1 
38                 \key fis; s1
39                 \key c; s1 
40                 \key f; s1 
41                 \key bes; s1
42                 \key es; s1
43                 \key as; s1
44                 \key des; s1
45                 \key ges; s1
46         }
47
48 \score{
49         <
50                 \type ChordNames \scales
51                 \type Staff < \scales \keys >
52         >
53 }