lilypond-user
[Top][All Lists]
Advanced

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

Re: percent and bar lines


From: Aaron Hill
Subject: Re: percent and bar lines
Date: Thu, 16 Sep 2021 05:43:52 -0700
User-agent: Roundcube Webmail/1.4.9

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



reply via email to

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