On 2021-09-16 5:17 am, Niels wrote:
is it possible to use 'repeat percent' including special bar lines?
I tried:
\version "2.20.0"
\score {
{
\time 1/4
\repeat percent 12 { c''4 \bar "!" }
r4
\bar "|."
}
}
In the score the dashed bar line (\bar "!") appears only after the
first note and not after the percent signs. How can I have all bar
lines dashed?
Should be able to play with the default bar line type:
%%%%
\version "2.20.0"
\score {
{
\time 1/4
\set Timing.defaultBarType = "!"
\repeat percent 12 { c''4 }
\unset Timing.defaultBarType
r4
\bar "|."
}
}
%%%%
-- Aaron Hill