X-Git-Url: https://git.donarmstrong.com/?a=blobdiff_plain;f=Documentation%2Fsnippets%2Fremoving-the-first-empty-line.ly;h=342ef2677c511e3153066bce0ec71348eae7dba7;hb=0859431a3b2a6c36b2fee643563c6fd914fe9884;hp=db4c17fa92163635f547e84378305c01224e1bfc;hpb=f5387a5c986393052bc9443ebd9b6cd9f14c6887;p=lilypond.git diff --git a/Documentation/snippets/removing-the-first-empty-line.ly b/Documentation/snippets/removing-the-first-empty-line.ly index db4c17fa92..40a0f90e3c 100644 --- a/Documentation/snippets/removing-the-first-empty-line.ly +++ b/Documentation/snippets/removing-the-first-empty-line.ly @@ -1,61 +1,13 @@ -%% Do not edit this file; it is automatically +%% DO NOT EDIT this file manually; it is automatically %% generated from LSR http://lsr.dsi.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.10" +\version "2.17.11" \header { - lsrtags = "staff-notation, tweaks-and-overrides, breaks" - -%% Translation of GIT committish: 5cab62e8738ff02eead438042743116391f306f5 - texidoces = " -El primer pentagrama vacío también se puede suprimir de la -partitura estableciendo la propiedad @code{remove-first} de -@code{VerticalAxisGroup}. Esto se puede hacer globalmente dentro -del bloque @code{\\layout}, o localmente dentro del pentagrama -concreto que se quiere suprimir. En este último caso, tenemos que -especificar el contexto (@code{Staff} se aplica sólo al pentagrama -actual) delante de la propiedad. - -El pentagrama inferior del segundo grupo no se elimina, porque el -ajuste sólo se aplica al pentagrama concreto dentro del que se -escribe. - -" - doctitlees = "Quitar la primera línea vacía" - -%% Translation of GIT committish: d96023d8792c8af202c7cb8508010c0d3648899d - texidocde = " -Ein leeres Notensystem kann auch aus der ersten Zeile einer Partitur -entfernt werden, indem die Eigenschaft @code{remove-first} der -@code{VerticalAxisGroup}-Eigenschaft eingesetzt wird. Das kann -man global in einer @code{\\layout}-Umgebung oder lokal in dem -bestimmten Notensystem machen, das entfernt werden soll. In letzterem -Fall muss man den Kontext angeben. - -Das untere Notensystem der zweiten Systemgruppe wird nicht entfernt, -weil in die Einstellungen in dem Schnipsel nur für das eine Notensystem -gültig sind. - -" - doctitlede = "Die erste leere Notenzeile auch entfernen" -%% Translation of GIT committish: d78027a94928ddcdd18fd6534cbe6d719f80b6e6 - texidocfr = " -Par défaut, le premier système comportera absolument toutes les portées. -Si vous voulez masquer les portées vides y compris pour le premier -système, vous devrez activer la propriété @code{remove-first} du -@code{VerticalAxisGroup}. Mentionnée dans un bloc @code{\\layout}, -cette commande agira de manière globale. Pour qu'elle ne soit effective -que pour une portée individuelle, vous devrez également spécifier le -contexte (@code{Staff} pour qu'il ne concerne que la portée en cours) en -préfixe de la propriété. - -La première ligne inférieure du deuxième @code{StaffGroup} est bien -présente, pour la simple raison que le réglage en question ne s'applique -qu'à la portée dans laquelle il a été inscrit. - -" - doctitlefr = "Masquage de la première ligne si elle est vide" - + lsrtags = "breaks, staff-notation, tweaks-and-overrides" texidoc = " The first empty staff can also be removed from the score by setting the @@ -73,11 +25,12 @@ written. doctitle = "Removing the first empty line" } % begin verbatim + \layout { \context { - \RemoveEmptyStaffContext + \Staff \RemoveEmptyStaves % To use the setting globally, uncomment the following line: - % \override VerticalAxisGroup #'remove-first = ##t + % \override VerticalAxisGroup.remove-first = ##t } } \new StaffGroup << @@ -88,7 +41,7 @@ written. \new Staff { % To use the setting globally, comment this line, % uncomment the line in the \layout block above - \override Staff.VerticalAxisGroup #'remove-first = ##t + \override Staff.VerticalAxisGroup.remove-first = ##t R1 \break R } @@ -103,4 +56,3 @@ written. R } >> -