]> git.donarmstrong.com Git - lilypond.git/blob - input/lsr/removing-the-first-empty-line.ly
Merge commit 'origin'
[lilypond.git] / input / lsr / removing-the-first-empty-line.ly
1 %% Do not edit this file; it is auto-generated from LSR http://lsr.dsi.unimi.it
2 %% This file is in the public domain.
3 \version "2.13.1"
4
5 \header {
6   lsrtags = "staff-notation, tweaks-and-overrides, breaks"
7
8   texidoces = "
9 El primer pentagrama vacío también se puede suprimir de la
10 partitura estableciendo la propiedad @code{remove-first} de
11 @code{VerticalAxisGroup}.  Esto se puede hacer globalmente dentro
12 del bloque @code{\\layout}, o localmente dentro del pentagrama
13 concreto que se quiere suprimir.  En este último caso, tenemos que
14 especificar el contexto (@code{Staff} se aplica sólo al pentagrama
15 actual) delante de la propiedad.
16
17 El pentagrama inferior del segundo grupo no se elimina, porque el
18 ajuste sólo se aplica al pentagrama concreto dentro del que se
19 escribe.
20
21 "
22   doctitlees = "Quitar la primera línea vacía"
23
24 %% Translation of GIT committish :<0364058d18eb91836302a567c18289209d6e9706>
25   texidocde = "
26 Ein leeres Notensystem kann auch aus der ersten Zeile einer Partitur
27 entfernt werden, indem die Eigenschaft @code{remove-first} der
28 @code{VerticalAxisGroup}-Eigenschaft eingesetzt wird.  Das kann
29 man global in einer @code{\\layout}-Umgebung oder lokal in dem
30 bestimmten Notensystem machen, das entfernt werden soll.  In letzterem
31 Fall muss man den Kontext angeben.
32
33 Das untere Notensystem der zweiten Systemgruppe wird nicht entfernt,
34 weil in die Einstellungen in dem Schnipsel nur für das eine Notensystem
35 gültig sind.
36
37 "
38   doctitlede = "Die erste leere Notenzeile auch entfernen"
39
40   texidoc = "
41 The first empty staff can also be removed from the score by setting the
42 @code{VerticalAxisGroup} property @code{remove-first}. This can be done
43 globally inside the @code{\\layout} block, or locally inside the
44 specific staff that should be removed.  In the latter case, you have to
45 specify the context (@code{Staff} applies only to the current staff) in
46 front of the property.
47
48 The lower staff of the second staff group is not removed, because the
49 setting applies only to the specific staff inside of which it is
50 written. 
51
52 "
53   doctitle = "Removing the first empty line"
54 } % begin verbatim
55
56 \layout {
57   \context { 
58     \RemoveEmptyStaffContext 
59     % To use the setting globally, uncomment the following line:
60     % \override VerticalAxisGroup #'remove-first = ##t
61   }
62 }
63 \new StaffGroup <<
64   \new Staff \relative c' {
65     e4 f g a \break
66     c1
67   }
68   \new Staff {
69     % To use the setting globally, comment this line,
70     % uncomment the line in the \layout block above
71     \override Staff.VerticalAxisGroup #'remove-first = ##t
72     R1 \break
73     R
74   }
75 >>
76 \new StaffGroup <<
77   \new Staff \relative c' {
78     e4 f g a \break
79     c1
80   }
81   \new Staff {
82     R1 \break
83     R
84   }
85 >>