]> git.donarmstrong.com Git - lilypond.git/blob - input/test/c.ly
a2259fae93e31ee3082da3f73ebd030f9ea8f0fd
[lilypond.git] / input / test / c.ly
1 \version "1.0.12";
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               c3-; c m; c min
11    Caug                   c5+; c aug;
12    Cdim                   c5-; c dim
13    Cmaj7                  c7+; c maj
14    C7                     c7
15    Csus; Csus4            c4; c sus
16 %}
17
18 scales = \notes\transpose c''\chords{
19                 <c1 e g>
20                 @1c m @c min @4c dim @c aug @c sus @c maj
21                 @1c6 @4c7 @c9 @c11 @c13
22                 @1c @g @d @a @e @b @fis
23                 @1c @f @bes @es @as @des @ges
24         }
25
26 keys = \notes{
27                 s1
28                 s1 s1 s1
29                 s1 s1
30                 s1
31                 \key g; s1
32                 \key d; s1 
33                 \key a; s1 
34                 \key e; s1 
35                 \key b; s1 
36                 \key fis; s1
37                 \key c; s1 
38                 \key f; s1 
39                 \key bes; s1
40                 \key es; s1
41                 \key as; s1
42                 \key des; s1
43                 \key ges; s1
44         }
45
46 \score{
47         <
48                 \type ChordNames \scales
49                 \type Staff < \scales \keys >
50         >
51 }