Chord substitution mystery

2009-05-05 Thread Stan Mulder
I was using a chord substitution scheme submitted here by Kieren MacMillan. It
works well and I enhanced it for augmented chords. However, I'm trying to
display a plus sign as the augmented symbol and in the case of the C augmented7
chord it displays C7/#5 instead of C+7. Whereas the C aug 9 is fine, showing
C+9:

 \paper {
   ragged-last  = ##f
 }
 
 \include "english.ly"
 
 FGGChordNames =
 {
 1-\markup { \super "maj9" }
 1-\markup { \super "6(add9)" }
 1-\markup { + }
 1-\markup { +\super "7" }
 1-\markup { +\super "9" }
 }
 chExceptions = #(append (sequential-music-to-chord-exceptions 
  FGGChordNames #t) ignatzekExceptions)
 
 melody = \relative c'' {
c4 c c c c
\bar "|."
 }
 
 harmonies = \chordmode {
\set chordChanges = ##f
\set chordNameExceptions = #chExceptions
c4:maj9
c4:6.9
c4:aug
c4:aug7
c4:aug9
 }
  
 \score {
<:<
\new ChordNames {
\set chordChanges = ##t
\harmonies
}
\new Voice = "one" {
\melody
}
 >:>
 \layout { }
 \midi { }
 }




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


Re: Chord substitution mystery

2009-05-05 Thread Kieren MacMillan

Hi Stan,

I was using a chord substitution scheme submitted here by Kieren  
MacMillan.


Aw, shucks...  ;)

It works well and I enhanced it for augmented chords. However, I'm  
trying to
display a plus sign as the augmented symbol and in the case of the  
C augmented7
chord it displays C7/#5 instead of C+7. Whereas the C aug 9 is  
fine, showing C+9:


You've got an errant ' in your chord definition -- you actually want

 1-\markup { +\super "7" }

Hope this helps!
Kieren.


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


Re: Chord substitution mystery

2009-05-05 Thread Stan Mulder
Kieren MacMillan  sympatico.ca> writes:

> You've got an errant ' in your chord definition -- you actually want
> 
>   1-\markup { +\super "7" }
> 
> Hope this helps!


That does help. I guess the quote mark put that particular note in a different
octave???



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