]> git.donarmstrong.com Git - lilypond.git/blob - Documentation/snippets/removing-the-first-empty-line.ly
Merge branch 'lilypond/translation' of ssh://jomand@git.sv.gnu.org/srv/git/lilypond
[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.4"
5
6 \header {
7   lsrtags = "staff-notation, tweaks-and-overrides, breaks"
8
9 %% Translation of GIT committish: b2d4318d6c53df8469dfa4da09b27c15a374d0ca
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: d96023d8792c8af202c7cb8508010c0d3648899d
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   texidoc = "
44 The first empty staff can also be removed from the score by setting the
45 @code{VerticalAxisGroup} property @code{remove-first}. This can be done
46 globally inside the @code{\\layout} block, or locally inside the
47 specific staff that should be removed.  In the latter case, you have to
48 specify the context (@code{Staff} applies only to the current staff) in
49 front of the property.
50
51 The lower staff of the second staff group is not removed, because the
52 setting applies only to the specific staff inside of which it is
53 written.
54
55 "
56   doctitle = "Removing the first empty line"
57 } % begin verbatim
58
59 \layout {
60   \context {
61     \RemoveEmptyStaffContext
62     % To use the setting globally, uncomment the following line:
63     % \override VerticalAxisGroup #'remove-first = ##t
64   }
65 }
66 \new StaffGroup <<
67   \new Staff \relative c' {
68     e4 f g a \break
69     c1
70   }
71   \new Staff {
72     % To use the setting globally, comment this line,
73     % uncomment the line in the \layout block above
74     \override Staff.VerticalAxisGroup #'remove-first = ##t
75     R1 \break
76     R
77   }
78 >>
79 \new StaffGroup <<
80   \new Staff \relative c' {
81     e4 f g a \break
82     c1
83   }
84   \new Staff {
85     R1 \break
86     R
87   }
88 >>
89