]> git.donarmstrong.com Git - lilypond.git/blob - ly/english.ly
release: 1.5.9
[lilypond.git] / ly / english.ly
1 %{
2      English note names spelled out in full, and abbreviated
3      with s for sharp and f for flat.
4 %}
5
6 \pitchnames #`(
7         (cflatflat . ,(make-pitch -1 0 -2 ))
8         (cflat . ,(make-pitch -1 0 -1 ))
9         (c . ,(make-pitch -1 0 0 ))
10         (csharp . ,(make-pitch -1 0 1 ))
11         (csharpsharp . ,(make-pitch -1 0 2 ))
12         (dflatflat . ,(make-pitch -1 1 -2 ))
13         (dflat . ,(make-pitch -1 1 -1 ))
14         (d . ,(make-pitch -1 1 0 ))
15         (dsharp . ,(make-pitch -1 1 1 ))
16         (dsharpsharp . ,(make-pitch -1 1 2 ))
17         (eflatflat . ,(make-pitch -1 2 -2 ))
18         (eflat . ,(make-pitch -1 2 -1 ))
19         (e . ,(make-pitch -1 2 0 ))
20         (esharp . ,(make-pitch -1 2 1 ))
21         (esharpsharp . ,(make-pitch -1 2 2 ))
22         (fflatflat . ,(make-pitch -1 3 -2 ))
23         (fflat . ,(make-pitch -1 3 -1 ))
24         (f . ,(make-pitch -1 3 0 ))
25         (fsharp . ,(make-pitch -1 3 1 ))
26         (fsharpsharp . ,(make-pitch -1 3 2 ))
27         (gflatflat . ,(make-pitch -1 4 -2 ))
28         (gflat . ,(make-pitch -1 4 -1 ))
29         (g . ,(make-pitch -1 4 0 ))
30         (gsharp . ,(make-pitch -1 4 1 ))
31         (gsharpsharp . ,(make-pitch -1 4 2 ))
32         (aflatflat . ,(make-pitch -1 5 -2 ))
33         (aflat . ,(make-pitch -1 5 -1 ))
34         (a . ,(make-pitch -1 5 0 ))
35         (asharp . ,(make-pitch -1 5 1 ))
36         (asharpsharp . ,(make-pitch -1 5 2 ))
37         (bflatflat . ,(make-pitch -1 6 -2 ))
38         (bflat . ,(make-pitch -1 6 -1 ))
39         (b . ,(make-pitch -1 6 0 ))
40         (bsharp . ,(make-pitch -1 6 1 ))
41         (bsharpsharp . ,(make-pitch -1 6 2 ))
42
43         (cff . ,(make-pitch -1 0 -2 ))
44         (cf . ,(make-pitch -1 0 -1 ))
45         (c . ,(make-pitch -1 0 0 ))
46         (cs . ,(make-pitch -1 0 1 ))
47         (css . ,(make-pitch -1 0 2 ))
48         (dff . ,(make-pitch -1 1 -2 ))
49         (df . ,(make-pitch -1 1 -1 ))
50         (d . ,(make-pitch -1 1 0 ))
51         (ds . ,(make-pitch -1 1 1 ))
52         (dss . ,(make-pitch -1 1 2 ))
53         (eff . ,(make-pitch -1 2 -2 ))
54         (ef . ,(make-pitch -1 2 -1 ))
55         (e . ,(make-pitch -1 2 0 ))
56
57         (es . ,(make-pitch -1 2 1 ))    
58         (ess . ,(make-pitch -1 2 2 ))
59         (fff . ,(make-pitch -1 3 -2 ))
60         (ff . ,(make-pitch -1 3 -1 ))
61         (f . ,(make-pitch -1 3 0 ))
62         (fs . ,(make-pitch -1 3 1 ))
63         (fss . ,(make-pitch -1 3 2 ))
64         (gff . ,(make-pitch -1 4 -2 ))
65         (gf . ,(make-pitch -1 4 -1 ))
66         (g . ,(make-pitch -1 4 0 ))
67         (gs . ,(make-pitch -1 4 1 ))
68         (gss . ,(make-pitch -1 4 2 ))
69         (aff . ,(make-pitch -1 5 -2 ))
70         (af . ,(make-pitch -1 5 -1 ))
71         (a . ,(make-pitch -1 5 0 ))
72         (as . ,(make-pitch -1 5 1 ))
73         (ass . ,(make-pitch -1 5 2 ))
74         (bff . ,(make-pitch -1 6 -2 ))
75         (bf . ,(make-pitch -1 6 -1 ))
76         (b . ,(make-pitch -1 6 0 ))
77         (bs . ,(make-pitch -1 6 1 ))
78         (bss . ,(make-pitch -1 6 2 ))
79 )
80
81 \version "1.3.146"
82