]> git.donarmstrong.com Git - lilypond.git/blobdiff - Documentation/snippets/creating-blank-staves.ly
Documentation/snippets/new/staff-headword.ly: wrong version
[lilypond.git] / Documentation / snippets / creating-blank-staves.ly
index 7e15ba4e6d4e3c426c6132aa58f9713ee1c6f0b0..69d3626554f45228d09dfc1863ac5cd6c2f23821 100644 (file)
@@ -19,7 +19,6 @@ To create blank staves, generate empty measures then remove the
   doctitle = "Creating blank staves"
 } % begin verbatim
 
-
 #(set-global-staff-size 20)
 
 \score {
@@ -41,6 +40,8 @@ To create blank staves, generate empty measures then remove the
   }
 }
 
+% uncomment these lines for "letter" size
+%{
 \paper {
   #(set-paper-size "letter")
   ragged-last-bottom = ##f
@@ -49,3 +50,16 @@ To create blank staves, generate empty measures then remove the
   bottom-margin = 0.25\in
   top-margin = 0.25\in
 }
+%}
+
+% uncomment these lines for "A4" size
+%{
+\paper {
+  #(set-paper-size "a4")
+  ragged-last-bottom = ##f
+  line-width = 180
+  left-margin = 15
+  bottom-margin = 10
+  top-margin = 10
+}
+%}