lilypond-user
[Top][All Lists]
Advanced

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

Re: consecutive \repeat volta: bug?


From: Thomas Morley
Subject: Re: consecutive \repeat volta: bug?
Date: Tue, 11 Sep 2012 00:45:29 +0200

2012/9/11 luis jure <address@hidden>:
>
> 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



reply via email to

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