X-Git-Url: https://git.donarmstrong.com/?a=blobdiff_plain;f=Documentation%2Fsnippets%2Fcreating-blank-staves.ly;h=69d3626554f45228d09dfc1863ac5cd6c2f23821;hb=75986ad6a3118f7f6c80ccab2c04a5685b919b7c;hp=7e15ba4e6d4e3c426c6132aa58f9713ee1c6f0b0;hpb=4ee99b07605942b02e82c6526df98b68cbc03981;p=lilypond.git diff --git a/Documentation/snippets/creating-blank-staves.ly b/Documentation/snippets/creating-blank-staves.ly index 7e15ba4e6d..69d3626554 100644 --- a/Documentation/snippets/creating-blank-staves.ly +++ b/Documentation/snippets/creating-blank-staves.ly @@ -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 +} +%}