]> git.donarmstrong.com Git - lilypond.git/blob - input/regression/staff-mixed-size.ly
* scripts/lilypond-book.py (do_file): do not overwrite input file.
[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.1.26"
11
12 \score {
13   <<
14     \new Staff \with {
15       fontSize = #-4
16       \override StaffSymbol #'staff-space = #(magstep -4)
17     }
18     \notes \relative c' {
19 \override DynamicText  #'extra-offset = #'(0 . 3)
20       s1-\f c''8[(\< r a g]) e[ r d( <f a>])\! \times 2/3 { d4 d d }
21     }
22     \new Staff
23     \notes \relative c' {
24 \override DynamicText  #'extra-offset = #'(0 . 3)
25       s1-\f c''8[(\< r a g]) e[ r d( <f a>])\! \times 2/3 { d4 d d }
26     }
27   >>
28
29   \paper {
30     #(paper-set-staff-size 6)
31     raggedright = ##t
32   }
33 }