2018-06-30 8:37 GMT+02:00 Reilly Farrell <reillycfarr...@gmail.com>:
> Hi All,
>
> I'm looking for a solution for printing a C Delta 7 chord name (so that 7
> prints clearly after the delta symbol).  I started off wth the failed
> attempt below and haven't had much success anyway else:
>
> \version "2.18.2"
>
> \score {
> <<
> \relative c' {
> c4 c c c |
> }
>
> \chords {
> c1:maj7.7
> }
>>>
> \layout{}
> \midi{}
> }
>
> Any assistance or suggestion is appreciated.  Thank you!


Usually the "delta symbol" _is_ the symbol for major seven.
Admittedly, I know other notations as well. Though, I've never seen a
"delta symbol" _and_ "7".

Anyway, the context-property `majorSevenSymbol` could be adjusted to
retrun as you wish.

\layout {
  \context {
    \Score
    %% whiteTriangleMarkup is the default, see engraver-init.ly
    majorSevenSymbol = \markup { #whiteTriangleMarkup 7 }
  }
}

\chords {
  c1:7+
}

HTH,
  Harm

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

Reply via email to