| [ << Staff notation ] | [Top][Contents] | [ Editorial annotations >> ] |
| [ < Quitar la llave en el primer sistema de una partitura de piano ] | [ Up: Staff notation ] | [ Fijar un separador entre los sistemas > ] |
Quitar la primera línea vacía
El primer pentagrama vacío también se puede suprimir de la
partitura estableciendo la propiedad remove-first de
VerticalAxisGroup. Esto se puede hacer globalmente dentro
del bloque \layout, o localmente dentro del pentagrama
concreto que se quiere suprimir. En este último caso, tenemos que
especificar el contexto (Staff se aplica solo al pentagrama
actual) delante de la propiedad.
El pentagrama inferior del segundo grupo no se elimina, porque el ajuste solo se aplica al pentagrama concreto dentro del que se escribe.
\layout { \context { \Staff \RemoveEmptyStaves % To use the setting globally, uncomment the following line: % \override VerticalAxisGroup.remove-first = ##t } } \new StaffGroup << \new Staff \relative c' { e4 f g a \break c1 } \new Staff { % To use the setting globally, comment this line, % uncomment the line in the \layout block above \override Staff.VerticalAxisGroup.remove-first = ##t R1 \break R } >> \new StaffGroup << \new Staff \relative c' { e4 f g a \break c1 } \new Staff { R1 \break R } >> \paper { tagline = ##f }
| [ << Staff notation ] | [Top][Contents] | [ Editorial annotations >> ] |
| [ < Quitar la llave en el primer sistema de una partitura de piano ] | [ Up: Staff notation ] | [ Fijar un separador entre los sistemas > ] |