]> git.donarmstrong.com Git - lilypond.git/blob - input/test/chord-names-jazz.ly
Removed file; it was a duplicate of beam-isknee.ly
[lilypond.git] / input / test / chord-names-jazz.ly
1 \version "1.7.18"
2 % FIXME: doesn't display anything useful.
3 \header {
4 texidoc = "Jazz notation for chord names.
5
6 FIXME.
7
8 "
9
10 }
11 \score { \notes { c4^"fixme"}}
12
13 %{
14
15 %% This should only be necessary if your kpathsea setup is broken
16 %
17 % Make sure the correct msamxx.tfm is where lily can find it
18 % (ie cwd or lily's tfm dir).
19 %
20 % For normal (20pt) paper, do
21 %
22 %   cp locate `msam9.tfm` LILYPONDPREFIXxtfm
23 %
24
25 scheme = \chords {
26   % major chords
27   c
28   c:6           % 6 = major triad with added sixth
29   c:maj         % triangle = maj
30   c:6.9^7       % 6/9 
31   c:9^7         % add9
32
33   % minor chords
34   c:m           % m = minor triad
35   c:m.6         % m6 = minor triad with added sixth
36   c:m.7+        % m triangle = minor major seventh chord
37   c:3-.6.9^7    % m6/9 
38   c:m.7         % m7
39   c:3-.9        % m9
40   c:3-.9^7      % madd9
41
42   % dominant chords
43   c:7           % 7 = dominant
44   c:7.5+        % +7 = augmented dominant
45   c:7.5-        % 7b5 = hard diminished dominant
46   c:9           % 7(9)
47   c:9-          % 7(b9)
48   c:9+          % 7(#9)
49   c:13^9.11     % 7(13)
50   c:13-^9.11    % 7(b13)
51   c:13^11       % 7(9,13)
52   c:13.9-^11    % 7(b9,13)
53   c:13.9+^11    % 7(#9,13)
54   c:13-^11      % 7(9,b13)
55   c:13-.9-^11   % 7(b9,b13)
56   c:13-.9+^11   % 7(#9,b13)
57
58   % half diminished chords
59   c:m5-.7               % slashed o = m7b5
60   c:9.3-.5-     % o/7(pure 9)
61
62   % diminished chords
63   c:m5-.7-      % o = diminished seventh chord
64 }
65
66 \score {
67   \notes <
68     \context ChordNames {
69         #(set-chord-name-style 'jazz)
70         \scheme }
71     \context Staff \transpose c c' \scheme
72   >
73 }
74 %% new-chords-done %%
75 %}