]> git.donarmstrong.com Git - lilypond.git/blobdiff - Documentation/snippets/removing-the-first-empty-line.ly
Merge remote-tracking branch 'origin/master' into translation
[lilypond.git] / Documentation / snippets / removing-the-first-empty-line.ly
index 70d4fb4f323ae7bbb1a4aaf0aa8a067d761dcd04..ed8e432f8b357bfdff86f451c2aa23d636b923d2 100644 (file)
@@ -1,42 +1,13 @@
-%% Do not edit this file; it is auto-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.1"
+\version "2.18.0"
 
 \header {
-  lsrtags = "staff-notation, tweaks-and-overrides, breaks"
-
-%% Translation of GIT committish: b2d4318d6c53df8469dfa4da09b27c15a374d0ca
-  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"
+  lsrtags = "breaks, staff-notation, tweaks-and-overrides"
 
   texidoc = "
 The first empty staff can also be removed from the score by setting the
@@ -48,17 +19,17 @@ front of the property.
 
 The lower staff of the second staff group is not removed, because the
 setting applies only to the specific staff inside of which it is
-written. 
+written.
 
 "
   doctitle = "Removing the first empty line"
 } % begin verbatim
 
 \layout {
-  \context { 
-    \RemoveEmptyStaffContext 
+  \context {
+    \Staff \RemoveEmptyStaves
     % To use the setting globally, uncomment the following line:
-    % \override VerticalAxisGroup #'remove-first = ##t
+    % \override VerticalAxisGroup.remove-first = ##t
   }
 }
 \new StaffGroup <<
@@ -69,7 +40,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
   }
@@ -84,4 +55,3 @@ written.
     R
   }
 >>
-