]> git.donarmstrong.com Git - lilypond.git/blob - input/regression/bar-number.ly
Add support for max-systems-per-page.
[lilypond.git] / input / regression / bar-number.ly
1
2 \version "2.11.51"
3
4 \header {
5
6 texidoc="Bar numbers may be set and their padding adjusted individually.  
7 The counting of bar numbers is started after the anacrusis.
8
9 To prevent clashes at the beginning of a line, the padding may have to 
10 be increased.
11 "
12
13 }
14
15 \layout {
16   ragged-right = ##t
17 }
18
19 \relative c'' {
20   \override Score.BarNumber #'break-visibility = #all-visible
21   \partial 4 c4 
22   c1 c c
23   \set Score.currentBarNumber = #99999
24   \override Score.BarNumber  #'padding = #3
25   c1 c
26 }