]> git.donarmstrong.com Git - lilypond.git/blob - input/regression/chord-names.ly
a7bb79257f646ba149fba5e5b7627fde090a08bb
[lilypond.git] / input / regression / chord-names.ly
1 \version "1.7.5"
2 \header{
3 texidoc="
4 Chord names are generated from a list pitches, and are customisable
5 from guile.  For some unlogical names, guile customisation is used
6 by default.
7 "
8 }
9
10 chord =  \notes\transpose c c'\chords{
11    c1
12    c:m
13    c:m5-
14    c:m5-.7-
15    c:7+
16    c:m5-.7
17    c:5-.7+
18    c:m7
19    c:7
20    d
21    d/a
22    d/+gis
23 }
24
25 \score{
26     <
27             \context ChordNames \chord
28             \context Staff \chord
29     >
30     \paper{
31
32                 \translator { 
33                         \ChordNamesContext
34                         ChordName \override #'word-space = #1 
35                 }
36     }
37 }
38
39 %% new-chords-done %%