]> git.donarmstrong.com Git - lilypond.git/blob - input/regression/chords-funky-ignatzek.ly
new file.
[lilypond.git] / input / regression / chords-funky-ignatzek.ly
1 \header {
2 texidoc = "Jazz chords, unusual combinations."
3 }
4
5 chs = \notes 
6 {
7 <<c d  f g>>1
8 <<c d  e f g>>1
9 <<c d  e  g>>1
10 <<c d es  g as>>1
11 <<c d e f g bes d' f'>>1
12 <<c d e f g bes c'  d' e'>>1
13 <<c e g bes c'  d' e'>>1
14 <<c e g a bes>>1
15 }
16
17
18 \score{
19     <
20         \context ChordNames {
21         #(set-chord-name-style 'ignatzek)
22         \chs
23     }
24         \context Staff \notes \transpose c c' { \chs }
25     >
26     \paper{
27         \translator { 
28             \ChordNamesContext
29             ChordName \override #'word-space = #1 
30         }
31     }
32 }