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