]> git.donarmstrong.com Git - lilypond.git/blob - input/test/chord-inversion.ly
release: 1.1.43
[lilypond.git] / input / test / chord-inversion.ly
1 \header{
2 enteredby =      "jcn";
3 copyright =      "public domain";
4 TestedFeatures =         "chord inversions";
5 }
6
7 inversions = \notes\transpose c''\chords{
8         % inversions ignored here
9         c1 c-sus c-6 c/e c/g c/d
10         % now try to find chords with inversions
11         \property Score.chordInversion = 1 
12         c1 c-sus c-6 
13         c/e
14         c/g
15         c/d % this triggers a warning: no 'd' in chord of c
16 }
17
18 \score{
19         <
20                 \context ChordNames \inversions
21                 \context Staff \inversions
22         >
23 }
24
25 \version "1.0.19";