]> git.donarmstrong.com Git - lilypond.git/blob - input/regression/chord-name-entry.ly
Fix 2241: Proper copyright/header/tagline handling with multiple bookparts
[lilypond.git] / input / regression / chord-name-entry.ly
1 \version "2.14.0"
2
3
4 \header {
5
6     texidoc = "Chords can be produced with the chordname entry 
7 code (@code{\\chordmode} mode), using a pitch and a suffix. Here,
8 the suffixes are printed below pitches.
9 "
10
11 }
12
13 { \context Voice \chordmode {
14     c1_"(nothing)"
15     c:7_":7"
16     c:m_":m"
17     c:m7_":m7"
18     c:aug_":aug"
19     c:maj7_":maj7"
20     c:dim_":dim"
21     c:dim7_":dim7"
22     c:sus4_":sus4"
23     c:sus2_":sus2"
24     c:6_":6"
25     c:m6_":m6"
26     c:7sus4_":7sus4"
27     c:3-_":3-"
28     c:3+_":3+"
29     c:5+.3-_":5+.3-"
30     c:7_":7"
31     c:9_":9"
32     c:11_":11"
33     c:13_":13"
34     c:m13_":m13"
35     c:7^5_":7\\^{~}5"
36     c^3_"\\^{~}3"
37     c/g_"/g"
38     c/gis_"/gis"
39     c/a_"/a"
40     c/+f_"/+f"
41     c/+g_"/+g"
42 }
43 }