lilypond-user
[Top][All Lists]
Advanced

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

Re: slashed six in chordmode


From: James E . Bailey
Subject: Re: slashed six in chordmode
Date: Mon, 9 Feb 2009 21:38:11 +0100

I've decided to forego the \slashed-digit, since it's the wrong font, and I just made up a slashed 6 for this purpose. I'm sure when someone who knows how to use Scheme needs this sort of thing, it can be better formatted, but as someone in need, this works!

\version "2.12.2"

myChordDefinitions = {
<es g ais c>-\markup \super {
      \combine
      6
      \raise #0.3 \rotate #-75 \bold /
   }
}

myChordExceptions = #(append
   (sequential-music-to-chord-exceptions myChordDefinitions #t)
   ignatzekExceptions)

myChordInit = {
   \set chordNameExceptions = #myChordExceptions
}

music = \relative c' {
   c2 f
}

chord = \chords {
   \myChordInit
   c2 f:m6+
}

\score {
   <<
      \chord
      \new Staff \music
   >>
}





reply via email to

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