]> git.donarmstrong.com Git - lilypond.git/blobdiff - Documentation/snippets/removing-the-first-empty-line.ly
Merge branch 'translation' into staging
[lilypond.git] / Documentation / snippets / removing-the-first-empty-line.ly
index b4201b186d3d2c4694c5ecfd98a81ae7c9f51eb2..6cad882e87f416581562e381d62dd9074dfcc4cd 100644 (file)
@@ -1,43 +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.4"
+\version "2.17.6"
 
 \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
@@ -55,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 <<
@@ -70,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
   }
@@ -85,4 +56,3 @@ written.
     R
   }
 >>
-