lilypond-user
[Top][All Lists]
Advanced

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

Re: 7dim symbol in chord names


From: Flaming Hakama by Elaine
Subject: Re: 7dim symbol in chord names
Date: Mon, 9 Nov 2015 14:58:02 -0800


>> Hello all !
>>
>> Is there a way to modify 7dim (e.g. print "C#7dim"
>
>It's always been C#dim or C#dim7. C#7dim would indicate
>a leading tone or "half diminished" seventh, which is
>not what you apparently want. Regards, Rald

Yes, you can modify the appearance of chord symbols by adding "chord exceptions" to your chordmode expressions.

For a fuller discussion of this, see my blog post http://flaminghakama.com/flaming-lilypond-chords


I agree with Rald that "C#dim7" is typical.

However, I'm not sure I would interpret what you want, "C#7dim", the same way he does.  I would probably interpret that as you intend, not half-diminished.  But I would also not suggest it.


Regardless, here is how to accomplish what you want:


\version "2.19.15" 

myChordExceptions = {

  % Diminished
  <c es ges beses>1-\markup { 7dim }
}
chExceptions = #(append (sequential-music-to-chord-exceptions myChordExceptions #t) ignatzekExceptions)

myChordSequence = \chordmode {
  \set chordChanges = ##t
  \set chordNameExceptions = #chExceptions
  b1:1.3-.5-.7-
}

myMelody = \relative c'' {
  r4 f8 d b aes4.
}

\score {
  \new StaffGroup <<
    \new ChordNames \myChordSequence
    \new Staff {
      \myMelody
    }
  >>
}


HTH,

David Elaine Alt
415 . 341 .4954                                           "Confusion is highly underrated"
address@hidden
self-immolation.info
skype: flaming_hakama
Producer ~ Composer ~ Instrumentalist
-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-

reply via email to

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