]> git.donarmstrong.com Git - lilypond.git/blob - input/lsr/creating-blank-staves.ly
Deeply revise input/lsr structure, generation and compilation
[lilypond.git] / input / lsr / creating-blank-staves.ly
1 %% Do not edit this file; it is auto-generated from LSR!
2 %% Tags: staff-notation, editorial-and-educational-use
3 \version "2.11.35"
4
5 \header { texidoc = "
6 To create blank staves, you must generate empty measures, removing also
7 from the @code{Score} context the @code{Bar_number_engraver}, and from
8 the @code{Staff} context the @code{Time_signature_engraver}, the
9 @code{Clef_engraver} and the @code{Bar_engraver}. 
10 " }
11
12 \header {
13   tagline = ""
14 }
15
16 #(set-global-staff-size 20)
17
18 \score {
19   { 
20     \repeat unfold 12 { s1 \break } 
21   }
22   \layout {
23     indent = 0\in
24     \context {
25       \Staff
26       \remove Time_signature_engraver
27       \remove Clef_engraver
28       \remove Bar_engraver
29     }
30     \context {
31       \Score
32       \remove Bar_number_engraver
33     }
34   }
35 }
36
37 \paper {
38   #(set-paper-size "letter")
39   raggedlastbottom = ##f
40   linewidth = 7.5\in
41   leftmargin = 0.5\in
42   bottommargin = 0.25\in
43   topmargin = 0.25\in
44 }