lilypond-user
[Top][All Lists]
Advanced

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

Re: \chordmode problem?


From: Flaming Hakama by Elaine
Subject: Re: \chordmode problem?
Date: Mon, 23 Oct 2017 18:25:05 -0700


From: Menu Jacques <address@hidden>
To: lilypond-user <address@hidden>
Date: Tue, 12 Sep 2017 11:37:01 +0200
Subject: \chordmode problem?
Hello folks,

I get this score:

from what seems to be the reasonable LP code below.

What should one write to get:


Thanks if you can help!

JM


Just following up, since it seems no one gave you an explicit solution for how to realize your intended chord name.

While "Cmaj7#11" is a totally reasonable way to name this chord, I'd disagree that it is ideal to typeset it vertically aligned to baseline and using all the same size characters, as you suggest. 

Here is one way of doing it, which does attempt to customize the size and position of the chord symbol elements.


\version "2.19.15"

myChordExceptions = {
    <c e g b fis'>1-\markup { \raise #0.7 { \teeny "maj" } \raise #0.2 \normalsize "7" \raise #0.5 { \tiny "#11" } }
}
chExceptions = #(append (sequential-music-to-chord-exceptions myChordExceptions #t) ignatzekExceptions)

myChordSequence = \chordmode {
  \set chordChanges = ##t
  \set chordNameExceptions = #chExceptions
  c1:maj7.11+
}

myMelody = \relative c' {
  b8 c e g fis2
}

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


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]