]> git.donarmstrong.com Git - lilypond.git/blob - input/regression/bar-number.ly
Imported sources
[lilypond.git] / input / regression / bar-number.ly
1
2 \version "2.1.7"
3
4 \header {
5
6 texidoc="Bar number settable and padding adjustable.  Bar numbers
7 start counting after the anacrusis.
8
9 The padding should be increased, to prevent clashes at the start of the line.
10  
11 "
12
13 }
14
15 \score {
16   \notes \relative c'' {
17       \partial 4 c4 
18       c1 c c
19       \property Score.currentBarNumber = #99999
20       \property Score.BarNumber \override #'padding = #3
21       c1 c
22   }
23   \paper {
24     raggedright = ##t
25     \translator {
26         \ScoreContext
27         BarNumber \override #'break-visibility = #all-visible
28     }
29   }
30 }