lilypond-user
[Top][All Lists]
Advanced

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

Re: Unclear doc?


From: Malte Meyn
Subject: Re: Unclear doc?
Date: Wed, 29 Mar 2017 10:42:13 +0200
User-agent: Mozilla/5.0 (X11; Linux x86_64; rv:45.0) Gecko/20100101 Thunderbird/45.7.0


Am 29.03.2017 um 08:41 schrieb Menu Jacques:
> Hello folks,
> 
> In appendix A.17 of the LPNR v2.19.57, what doest the « No setting… »
> sentence mean?
> 
> alternativeNumberingStyle (symbol)
> The style of an alternative’s bar numbers. Can be numbers for going back
> to the same number or numbers-with-letters for going back to the same
> number with letter suffixes. *No setting will not go back in
> measure-number time*.

No setting means either “there is no setting” or “it’s set to #'()”.

\version "2.19.56"

music = {
  \repeat volta 3 R1*2
  \alternative {
    R
    R
    R
  }
  R
}

\layout {
  \context {
    \Score
    \override BarNumber.break-visibility = #end-of-line-invisible
  }
}

\new Score \music

\new Score \with {
  alternativeNumberingStyle = #'numbers
} \music

\new Score \with {
  alternativeNumberingStyle = #'numbers-with-letters
} \music

\new Score \with {
  alternativeNumberingStyle = #'numbers-with-letters
} {
  \music
  \set Score.alternativeNumberingStyle = #'()
  \music
}



reply via email to

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