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