lilypond-user
[Top][All Lists]
Advanced

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

Re: How do I do these chord symbols?


From: Kieren MacMillan
Subject: Re: How do I do these chord symbols?
Date: Mon, 21 Jan 2008 18:18:21 -0500

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
}




reply via email to

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