lilypond-user
[Top][All Lists]
Advanced

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

Re: chordChanges = ##t in an include file


From: Lukas-Fabian Moser
Subject: Re: chordChanges = ##t in an include file
Date: Sat, 4 Apr 2020 12:25:06 +0200
User-agent: Mozilla/5.0 (X11; Linux x86_64; rv:68.0) Gecko/20100101 Thunderbird/68.4.1

Hi Randy,

I'm trying to figure out how to set chordChanges to true in an include file, like so:
%%%%% def.ily %%%%%
\version "2.20.0"
\layout {
\context {
\ChordNames
\set chordChanges = ##t
}
}

\set is only needed outside of a \layout { \context { ... } } construction. Try:

\layout {
  \context {
    \ChordNames
    chordChanges = ##t
  }
}

Best
Lukas



reply via email to

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