[ << Staff notation ] | [Top][Contents] | [ Editorial annotations >> ] |
[ < ピアノ曲の先頭にあるブレースを削除する ] | [ Up : Staff notation ] | [ システム セパレータを設定する > ] |
先頭の空行を削除する
VerticalAxisGroup
の remove-first
プロパティをセットすることで、楽譜の先頭にある空の譜を削除することができます。これはグローバルの
\layout
ブロックでも行うことができますし、特定の譜を削除したい場合には譜の内部で使用することもできます。後者の場合には、プロパティ名の前にコンテキストを指定する必要があります
(Staff
は現在の譜にしか影響しません)。
2 つ目のグループの下側の譜は削除されていません。設定が記述されている譜にのみ適用されるからです。
\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 >> ] |
[ < ピアノ曲の先頭にあるブレースを削除する ] | [ Up : Staff notation ] | [ システム セパレータを設定する > ] |