]> git.donarmstrong.com Git - lilypond.git/blob - input/test/chord-inversion.ly
update syntax in .ly files.
[lilypond.git] / input / test / chord-inversion.ly
1 \version "1.7.6"
2 \header{
3 enteredby =      "jcn"
4 copyright =      "public domain"
5 TestedFeatures =         "chord inversions"
6 }
7
8 inversions =  \notes\transpose c c'\chords{
9         % inversions
10         c1 c:sus c:6 c/e c/g
11         c/d % this triggers a warning: no 'd' in chord of c
12
13         % added bass 
14         c/+e c/+c c/+b
15 }
16
17 \score{
18         <
19                 \context ChordNames \inversions
20                 \context Staff \inversions
21         >
22 }
23
24
25 %% new-chords-done %%