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