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