lilypond-user
[Top][All Lists]
Advanced

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

Re: Global chord modifications for multiple scores


From: Malte Meyn
Subject: Re: Global chord modifications for multiple scores
Date: Thu, 5 Sep 2019 09:38:00 +0200
User-agent: Mozilla/5.0 (X11; Linux x86_64; rv:60.0) Gecko/20100101 Thunderbird/60.8.0



Am 05.09.19 um 09:27 schrieb Witold Uchman:
Hi all!

Is there a way to globally modify chord properties in multiple scores contained in one file? I would like all the chords to be \germanChords with chordNameLowercaseMinor = ##t, but I could not find a way to put it in the \layout block...

Hi Witold,

the global \layout block is the correct place:

%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
\layout {
  % this was already present:
  \context {
    \Lyrics
    \override LyricText.self-alignment-X = #-1
  }
  % this is new:
  \context {
    \ChordNames
    \germanChords
    chordNameLowercaseMinor = ##t
  }
}
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%

The \context block contains the name of the context (ChordNames) and all \overrides and \sets that should affect all contexts of that kind. The \set command has to be omitted.

HTH,
Malte



reply via email to

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