]> git.donarmstrong.com Git - lilypond.git/blob - Documentation/snippets/removing-the-first-empty-line.ly
Docs: run convert-ly for 2.14.0.
[lilypond.git] / Documentation / snippets / removing-the-first-empty-line.ly
1 %% DO NOT EDIT this file manually; it is automatically
2 %% generated from LSR http://lsr.dsi.unimi.it
3 %% Make any changes in LSR itself, or in Documentation/snippets/new/ ,
4 %% and then run scripts/auxiliar/makelsr.py
5 %%
6 %% This file is in the public domain.
7 \version "2.14.0"
8
9 \header {
10   lsrtags = "staff-notation, tweaks-and-overrides, breaks"
11
12 %% Translation of GIT committish: 59caa3adce63114ca7972d18f95d4aadc528ec3d
13   texidoces = "
14 El primer pentagrama vacío también se puede suprimir de la
15 partitura estableciendo la propiedad @code{remove-first} de
16 @code{VerticalAxisGroup}.  Esto se puede hacer globalmente dentro
17 del bloque @code{\\layout}, o localmente dentro del pentagrama
18 concreto que se quiere suprimir.  En este último caso, tenemos que
19 especificar el contexto (@code{Staff} se aplica sólo al pentagrama
20 actual) delante de la propiedad.
21
22 El pentagrama inferior del segundo grupo no se elimina, porque el
23 ajuste sólo se aplica al pentagrama concreto dentro del que se
24 escribe.
25
26 "
27   doctitlees = "Quitar la primera línea vacía"
28
29
30 %% Translation of GIT committish: 0a868be38a775ecb1ef935b079000cebbc64de40
31   texidocde = "
32 Ein leeres Notensystem kann auch aus der ersten Zeile einer Partitur
33 entfernt werden, indem die Eigenschaft @code{remove-first} der
34 @code{VerticalAxisGroup}-Eigenschaft eingesetzt wird.  Das kann
35 man global in einer @code{\\layout}-Umgebung oder lokal in dem
36 bestimmten Notensystem machen, das entfernt werden soll.  In letzterem
37 Fall muss man den Kontext angeben.
38
39 Das untere Notensystem der zweiten Systemgruppe wird nicht entfernt,
40 weil in die Einstellungen in dem Schnipsel nur für das eine Notensystem
41 gültig sind.
42
43 "
44   doctitlede = "Die erste leere Notenzeile auch entfernen"
45
46 %% Translation of GIT committish: 4ab2514496ac3d88a9f3121a76f890c97cedcf4e
47   texidocfr = "
48 Par défaut, le premier système comportera absolument toutes les portées.
49 Si vous voulez masquer les portées vides y compris pour le premier
50 système, vous devrez activer la propriété @code{remove-first} du
51 @code{VerticalAxisGroup}.  Mentionnée dans un bloc @code{\\layout},
52 cette commande agira de manière globale.  Pour qu'elle ne soit effective
53 que pour une portée individuelle, vous devrez également spécifier le
54 contexte (@code{Staff} pour qu'il ne concerne que la portée en cours) en
55 préfixe de la propriété.
56
57 La première ligne inférieure du deuxième @code{StaffGroup} est bien
58 présente, pour la simple raison que le réglage en question ne s'applique
59 qu'à la portée dans laquelle il a été inscrit.
60
61 "
62   doctitlefr = "Masquage de la première ligne si elle est vide"
63
64
65   texidoc = "
66 The first empty staff can also be removed from the score by setting the
67 @code{VerticalAxisGroup} property @code{remove-first}. This can be done
68 globally inside the @code{\\layout} block, or locally inside the
69 specific staff that should be removed.  In the latter case, you have to
70 specify the context (@code{Staff} applies only to the current staff) in
71 front of the property.
72
73 The lower staff of the second staff group is not removed, because the
74 setting applies only to the specific staff inside of which it is
75 written.
76
77 "
78   doctitle = "Removing the first empty line"
79 } % begin verbatim
80
81 \layout {
82   \context {
83     \Staff \RemoveEmptyStaves
84     % To use the setting globally, uncomment the following line:
85     % \override VerticalAxisGroup #'remove-first = ##t
86   }
87 }
88 \new StaffGroup <<
89   \new Staff \relative c' {
90     e4 f g a \break
91     c1
92   }
93   \new Staff {
94     % To use the setting globally, comment this line,
95     % uncomment the line in the \layout block above
96     \override Staff.VerticalAxisGroup #'remove-first = ##t
97     R1 \break
98     R
99   }
100 >>
101 \new StaffGroup <<
102   \new Staff \relative c' {
103     e4 f g a \break
104     c1
105   }
106   \new Staff {
107     R1 \break
108     R
109   }
110 >>
111