]> git.donarmstrong.com Git - lilypond.git/blob - input/regression/staff-mixed-size.ly
Split WWW target in two stages WWW-1 and WWW-2
[lilypond.git] / input / regression / staff-mixed-size.ly
1 \header {
2   
3   texidoc = "Staves may be present in several sizes within a score.
4 This is achieved with an internal scaling factor. If the scaling factor is 
5 forgotten in some places, objects generally become too thick or too 
6 large on smaller staves."
7
8 }
9
10 \version "2.11.11"
11
12 \layout {
13   ragged-right = ##t
14 }
15
16 melody = \relative {
17   \override DynamicText  #'extra-offset = #'(0 . 3)
18   s1-\f c''8[(\< r a g]) e[ r d( <f a>])\! \times 2/3 { d4 d d }
19 }
20
21 <<
22   \new Staff \with {
23     fontSize = #-4
24     \override StaffSymbol #'staff-space = #(magstep -4)
25   } {
26     \melody
27   }
28   \new Staff {
29     \relative c' {
30       \melody
31     }
32   }
33 >>