]> git.donarmstrong.com Git - lilypond.git/blobdiff - Documentation/snippets/creating-blank-staves.ly
Issue 5167/7: markup-partial regtest: use \markup function assignment
[lilypond.git] / Documentation / snippets / creating-blank-staves.ly
index f264ed64f213149163bcf00082458f3d0720ee4e..69d3626554f45228d09dfc1863ac5cd6c2f23821 100644 (file)
@@ -1,10 +1,10 @@
 %% DO NOT EDIT this file manually; it is automatically
-%% generated from LSR http://lsr.dsi.unimi.it
+%% generated from LSR http://lsr.di.unimi.it
 %% Make any changes in LSR itself, or in Documentation/snippets/new/ ,
 %% and then run scripts/auxiliar/makelsr.py
 %%
 %% This file is in the public domain.
-\version "2.16.0"
+\version "2.18.0"
 
 \header {
   lsrtags = "contexts-and-engravers, editorial-annotations, paper-and-layout, specific-notation, staff-notation"
@@ -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
+}
+%}