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