X-Git-Url: https://git.donarmstrong.com/?a=blobdiff_plain;f=input%2Ftest%2Fossia.ly;h=aeb1ac31412837402de00a637951c11d01d1fb2a;hb=8fc0b9a4a716de24d4764f9f7be386341f1d9768;hp=c63b4c4d824342b6cb801f5484ad0462592ab7ba;hpb=cda8fc1780778b760905c8832f7e984161218f20;p=lilypond.git diff --git a/input/test/ossia.ly b/input/test/ossia.ly index c63b4c4d82..aeb1ac3141 100644 --- a/input/test/ossia.ly +++ b/input/test/ossia.ly @@ -1,6 +1,42 @@ -\version "1.3.110"; +\header { texidoc = "A temporary ossia in an instrumental part may + be printed using a separate, short staff. A simpler solution is + also given: instantiate a full staff, and let + @code{RemoveEmptyStaffContext} take out the unused parts. +" } + +\version "2.3.4" \score { + \relative c'' + \new StaffGroup \with { + \remove "System_start_delimiter_engraver" + \override SpanBar #'glyph = #":" + } << + + %% solution 1 + { c1 c1 + << + { c1 c1 } + \new Staff \with { + \remove "Time_signature_engraver" + } { + c,4^"ossia" es f fis g1 + } + >> + c1 \break c c } -\notes { c1 c1 < {\clef "treble"; c1 c1 } \context Staff=stb{ c1 c1}>} + %% solution 2 + \new Staff { R1*2 c,4^"ossia" es f fis g1 R1 * 3 } + >> + + + \paper { + raggedright= ##t + \context {\RemoveEmptyStaffContext} + \context { + \Score + \remove System_start_delimiter_engraver + } + } } +