Hi Father Gordon,

Sorry... should have done this first...  =\
I decided to teach myself chord-name-exception coding -- attached is your particular example, solved (I believe).

Hope this helps!
Kieren.
___________________

\version "2.11.37"
\include "english.ly"

chExcMajNine =
{
        <c e g b d'>1-\markup { \super "maj9" }
}
chExcSixAddNine =
{
        <c e g a d'>1-\markup { \super "6(add9)" }
}
chExceptions = #(append (sequential-music-to-chord-exceptions chExcSixAddNine #t)
        (append (sequential-music-to-chord-exceptions chExcMajNine #t)
        ignatzekExceptions))

chordStuff = \chordmode
{
        % standard names
        g1:maj9
        g1:6.9
        % names with custom exceptions
        \set chordNameExceptions = #chExceptions
        g1:maj9
        g1:6.9
}

\score
{
        \new ChordNames \chordStuff
}


_______________________________________________
lilypond-user mailing list
lilypond-user@gnu.org
http://lists.gnu.org/mailman/listinfo/lilypond-user

Reply via email to