Add an empty measure after the double bar. /bar "||" s1 Shane
On Fri, Feb 17, 2023, 4:36 AM Aberforth D - Instrumentals < aberfor...@gmail.com> wrote: > Hello, > > I am working on a complete piano vocal score for an opera. To keep things > manageable I work on individual pieces one at a time, one file per piece. I > intend to combine them later with a superseding file into a book. My > problem is this: Sometimes, a piece ends with a key change or time change > in anticipation of the next piece. In such cases a piece typically ends > with a double barline, because it is not the real end of the piece, > followed by the key change and time change symbols and open ended staff > lines at the right margin. However, when I use the following code, the > staff lines are not printed. How can I force Lilypond to print the staff > lines all the way to the end, without actually including more musical > content? Below is a short example that illustrates the problem. Thank you > for your help. > > \version "2.20.0" > \language "english" > > \score { > \new Staff { > \key f \major \time 4/4 > c'4 d' e' f' g' a' b' c'' \bar "||" > \clef "bass" \key g \major \time 3/4 > } > } > >