lilypond-user
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

Re: yet another chord question


From: Brett Duncan
Subject: Re: yet another chord question
Date: Tue, 10 Feb 2009 09:16:24 +1100
User-agent: Thunderbird 2.0.0.19 (Macintosh/20081209)

James E. Bailey wrote:
I'd like to have a chord that is C-10. I have

myChordDefinitions = {
   <c e g b dis>-\markup \super {-10}
}

And then, of course the requisite

myChordExceptions = #(append
   (sequential-music-to-chord-exceptions myChordDefinitions #t)
   ignatzekExceptions)

myChordInit = {
   \set chordNameExceptions = #myChordExceptions
}

I have my very simple input file of

Chord = \chords { \myChordInit c:9+ }

music = { c'2 }

\score {
   <<
      \Chord
      \music
   >>
}


So why is the output not changed? The chord name chart shows me that <c e g b dis> is a #9 chord. What I see is the default output of a #9 chord.


Because c:9+ would be the chord <c e g bes dis> rather than <c e g b dis>, so it doesn't match your chord definition.

Brett




reply via email to

[Prev in Thread] Current Thread [Next in Thread]