X-Git-Url: https://git.donarmstrong.com/?a=blobdiff_plain;f=Documentation%2Fsnippets%2Fcreating-blank-staves.ly;h=69d3626554f45228d09dfc1863ac5cd6c2f23821;hb=5d40b498e0b3c7cb2e0fdf5e90ad7be54f72211c;hp=adadf9f96b959f1d98c2a57364991161b0ca1065;hpb=70ff1f9ec002479b4b34e6e470c0e479d6060a57;p=lilypond.git diff --git a/Documentation/snippets/creating-blank-staves.ly b/Documentation/snippets/creating-blank-staves.ly index adadf9f96b..69d3626554 100644 --- a/Documentation/snippets/creating-blank-staves.ly +++ b/Documentation/snippets/creating-blank-staves.ly @@ -1,28 +1,19 @@ -%% Do not edit this file; it is automatically -%% generated from LSR http://lsr.dsi.unimi.it +%% DO NOT EDIT this file manually; it is automatically +%% 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.13.4" +\version "2.18.0" \header { - lsrtags = "staff-notation, editorial-annotations, contexts-and-engravers, paper-and-layout" - -%% Translation of GIT committish: b2d4318d6c53df8469dfa4da09b27c15a374d0ca - texidoces = " -Para crear pentagramas en blanco, genere compases vacíos y después -elimine el grabador de números de compás -@code{Bar_number_engraver} del contexto @code{Score}, y los -grabadores de la indicación de compás -@code{Time_signature_engraver}, de la clave @code{Clef_engraver} y -de los compases @code{Bar_engraver} del contexto de @code{Staff}. - -" - doctitlees = "Crear pentagramas en blanco" + lsrtags = "contexts-and-engravers, editorial-annotations, paper-and-layout, specific-notation, staff-notation" texidoc = " To create blank staves, generate empty measures then remove the @code{Bar_number_engraver} from the @code{Score} context, and the @code{Time_signature_engraver}, @code{Clef_engraver} and -@code{Bar_engraver} from the @code{Staff} context. +@code{Bar_engraver} from the @code{Staff} context. " doctitle = "Creating blank staves" @@ -31,8 +22,8 @@ To create blank staves, generate empty measures then remove the #(set-global-staff-size 20) \score { - { - \repeat unfold 12 { s1 \break } + { + \repeat unfold 12 { s1 \break } } \layout { indent = 0\in @@ -49,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 @@ -57,4 +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 +} +%}