]> git.donarmstrong.com Git - lilypond.git/blob - input/regression/staff-tweak.ly
* lily/main.cc (main_prog): print summary of failed files.
[lilypond.git] / input / regression / staff-tweak.ly
1 \version "2.1.7"
2
3 \header {
4 texidoc = "The staff is a grob, and may be adjusted as well: this one
5  shows a staff with 6 thick line, and a slightly large staffspace.
6 Beams remain correctly quantized."    
7
8 }
9
10
11 mus = \notes \relative c' { c4 g' d'8 d d d }
12
13 \score {
14   \notes <<
15     \new Staff {
16         \property
17         Staff.  StaffSymbol \set #'thickness = #2.0
18         \property
19         Staff.StaffSymbol \set #'line-count = #6
20         \property
21         Staff.StaffSymbol \set #'staff-space = #1.1
22         \mus
23     }
24     \mus
25   >>
26   \paper  {
27     raggedright = ##t
28   }
29 }
30