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