]> git.donarmstrong.com Git - lilypond.git/blob - input/test/chords.ly
e3c0c4d182a3677ac7de27eb019e0cb61a32ba17
[lilypond.git] / input / test / chords.ly
1 \version "1.0.12";
2
3 %{
4 Would this be acceptable/good enough/convenient for entry?
5
6    Convention/Standard    Logical/Lily(?)
7    
8    C#                     cis
9    Cb                     ces
10    Cm/Cmin                c3-     
11    Caug                   c5+
12    Cdim                   c5-
13    Cmaj7                  c7
14    C7                     c7-
15    Csus/Csus4             c4^3
16 %}
17
18 scales = \notes\transpose c''\chords{
19                 *c *g *d *a *e *b *fis
20                 *c *f *bes *es *as *des *ges
21                 *c6 *c7 *c9 *c11 *c13
22         }
23
24 \score{
25         <
26                 \type ChordNames \scales
27                 \type Staff \scales
28         >
29 }