2012/9/11 luis jure <[email protected]>:
>
> thank you very much for your prompt answer.
>
> on 2012-09-11 at 00:03 james wrote:
>
>>Do you mean like
>>\version "2.16.0"
>> \relative c'' {
>> c1
>> \repeat volta 3 { c2 c } \bar ":|.|:"
>> \repeat volta 3 { c2 c } |
>>}
>
> exactly. are we supposed to write the correct barlines explicitly?
> lilypond is usually quite clever in this respect. in any case, i still
> don't understand why the thin bar lines are omitted in my example, without
> the explicit \bar command.
>
> best,
>
>
> lj
Hi luis,
have a look in /ly/engraver-init.ly
There you can see the default-setting:
doubleRepeatType = #":|:"
You may want to change that in file:
\version "2.16.0"
\relative c'' {
\set Score.doubleRepeatType = #":|.|:"
c1
\repeat volta 3 { c2 c }
\repeat volta 3 { c2 c }
}
or in layout:
\layout {
\context {
\Score
doubleRepeatType = #":|.|:"
}
}
HTH,
Harm
_______________________________________________
lilypond-user mailing list
[email protected]
https://lists.gnu.org/mailman/listinfo/lilypond-user