lilypond-user
[Top][All Lists]
Advanced

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

Re: Dash instead of 'm' for minor chords


From: Shamus
Subject: Re: Dash instead of 'm' for minor chords
Date: Thu, 29 Jun 2006 07:49:10 -0700
User-agent: Thunderbird 1.5.0.2 (X11/20060526)

Hi!

> Is there a way to get a dash (-) instead of m for minor chords in chordmode
> notation ?
> 
> Thanks for any bright solution

I don't know if it's bright or not, but short of going into the
appropriate .scm file and changing the "m" there to a "-", you would
have go do the chordNameExceptions route:

jazzyChordsMusic =
{
  <c ees g>-\markup { "-" }         % Cm -> C-
  <c ees g bes>-\markup { "-7" }    % Cm7 -> C-7
  <c ees g bes d'>-\markup { "-9" } % Cm9 -> C-9
  % Add more as needed
}

jazzyChordsAdd = #(append
  (sequential-music-to-chord-exceptions jazzyChordsMusic #t)
  ignatzekExceptions)

jazzyChords =
{
  \set chordNameExceptions = #jazzyChordsAdd
}

Then, in your chordNames, at the top you would put \jazzyChords in like so:

Chords = \chordmode
{
  \jazzyChords

  c1:m
  c:m7
  c:m9
}

There's probably a better way to do it with partial exceptions, but I
can't seem to find a quick 'n' dirty example.

-- Shamus




reply via email to

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