]> git.donarmstrong.com Git - lilypond.git/blobdiff - input/test/chords.ly
release: 1.1.49
[lilypond.git] / input / test / chords.ly
index 31ef252e35f9d10f391bfe71e33632096f83026c..dda0de434d766c7077f305ab8c926d216a1dcf30 100644 (file)
@@ -1,27 +1,60 @@
+\version "1.0.21";
+
 %{
 Would this be acceptable/good enough/convenient for entry?
 
-   Convention/Standard    Logical/Lily(?)
+   Convention/Standard    Lily
    
    C#                     cis
    Cb                     ces
-   Cm/Cmin                c3-     
-   Caug                   c5+
-   Cdim                   c5-
-   Cmaj7                  c7
-   C7                     c7-
-   Csus/Csus4             c4^3
+   Cm; Cmin               c-3-; c-m; c-min
+   Caug                   c-5+; c-aug;
+   Cdim                   c-5-; c-dim
+   Cmaj7                  c-7+; c-maj
+   C7                     c-7
+   Csus; Csus4            c-4; c-sus
+
 %}
 
-scales = \notes\transpose c''\chords{
-               @c; @g; @d; @a; @e; @b; @fis;
-               @c; @f; @bes; @es; @as; @des; @ges;
-               @c6; @c7; @c9; @c11; @c13;
+scales = \notes \transpose c'' \chords{
+               %<c1 e g>
+               c1-m c-min c4-dim c-aug c-sus c-maj
+                c1-6 c4-7 c-9 c-11 c-13
+               c1-7^5 c-13^5.7.9.11
+               % c1-7^5 c-13^5
+               c1 g d a e b fis
+                c1 f bes es as des ges
+               % wierd, multiple -add, ^sub
+               c-7+.9-^3.5
+               % long
+               c\breve c\longa
+       }
+
+keys = \notes{
+                s1
+                s1 s1 s1
+                s1 s1
+                s1
+                \key g; s1
+                \key d; s1 
+                \key a; s1 
+                \key e; s1 
+                \key b; s1 
+                \key fis; s1
+                \key c; s1 
+                \key f; s1 
+                \key bes; s1
+                \key es; s1
+                \key as; s1
+                \key des; s1
+                \key ges; s1
+                \key c; s1*2
+                \key c; s1*6
        }
 
 \score{
        <
-               \type ChordNames \scales
-               \type Staff \scales
+               \context ChordNames \scales
+               \context Staff < \scales \keys >
        >
 }