Re: chord and chordChanges

2019-05-09 Thread Gianmaria Lari
On Thu, 9 May 2019 at 14:18, David Kastrup wrote: > Gianmaria Lari writes: > > >> > >> > >> \version "2.21.0" > >> << > >> \new Staff { > >> c'4 d' e' f' > >> \repeat volta 2 {c' d' e' f' | g' a' b' c''} > >> } > >> \new ChordNames \with { chordChanges = ##t } { > >> g1

Re: chord and chordChanges

2019-05-09 Thread David Kastrup
Gianmaria Lari writes: >> >> >> \version "2.21.0" >> << >> \new Staff { >> c'4 d' e' f' >> \repeat volta 2 {c' d' e' f' | g' a' b' c''} >> } >> \new ChordNames \with { chordChanges = ##t } { >> g1 \once \unset chordChanges \repeat volta 2 {g1|1} >> } >> >> >> > > Thank you

Re: chord and chordChanges

2019-05-09 Thread Gianmaria Lari
> > > \version "2.21.0" > << > \new Staff { > c'4 d' e' f' > \repeat volta 2 {c' d' e' f' | g' a' b' c''} > } > \new ChordNames \with { chordChanges = ##t } { > g1 \once \unset chordChanges \repeat volta 2 {g1|1} > } > >> > Thank you David, this is what I wanted! In the

Re: chord and chordChanges

2019-05-09 Thread David Kastrup
Gianmaria Lari writes: > Following code prints chord even if they don't change. > > \version "2.21.0" > << > \new Staff { > c'4 d' e' f' > \repeat volta 2 {c' d' e' f' | g' a' b' c''} > } > \new ChordNames { > g1 \repeat volta 2 {g1|1} > } >>> > > To avoid to print chords

chord and chordChanges

2019-05-09 Thread Gianmaria Lari
Following code prints chord even if they don't change. \version "2.21.0" << \new Staff { c'4 d' e' f' \repeat volta 2 {c' d' e' f' | g' a' b' c''} } \new ChordNames { g1 \repeat volta 2 {g1|1} } >> To avoid to print chords always, I used \set chordChanges = ##t. but I