]> git.donarmstrong.com Git - lilypond.git/blob - input/regression/measure-counter-staff-padding.ly
Issue 5167/6: Changes: show \markup xxx = ... \etc assignments
[lilypond.git] / input / regression / measure-counter-staff-padding.ly
1 \version "2.19.59"
2
3 \header {
4   texidoc = "The @code{staff-padding} property may be used to adjust
5 the distance of @code{MeasureCounter} objects from the staff.  The
6 following example uses @code{staff-padding} to align the count
7 vertically.
8 "
9 }
10
11 \layout {
12   \context {
13     \Staff
14     \consists #Measure_counter_engraver
15   }
16 }
17
18 music = {
19   \startMeasureCount
20   c''2 c''
21   c'''2 c'''
22   \bar "||"
23   \stopMeasureCount
24 }
25
26 {
27   \music
28   \override Staff.MeasureCounter.staff-padding = 4
29   \music
30 }