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 \once
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 D
>
>
> \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 mean
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 al
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
w