Hi Gilles, hi Vincente and all, thank you both for your answers. They helped me very much. The only problem that I still have is that the first volta bracket has no end.
I played around with this as you, Gilles, said that using a "|." bar the bracket has an end line. So I wrote this: \override Staff.BarLine #'transparent = ##t \bar "|." s4 \override Staff.BarLine #'transparent = ##f \bar "||" This helps! But now there is too much space between the volta end line and the "||" bar line. I tried changing the duration of the s4 but it didn´t change anything. Then I moved the bar line, the key signature and the segno sign to the left. But there are still the staff lines going far too right. Any ideas how to solve this? Yours Dominic ----- Ursprüngliche Mail ----- Von: "Gilles Sadowski" <[email protected]> An: [email protected] Gesendet: Donnerstag, 25. November 2010 00:59:26 Betreff: Re: How to create a coda with a gap? Hi. > 3. The segno sign is for too high. Maybe the attached file helps somewhat for this item. > 4. The first volta bracket doesn´t have an end line. I noticed that using \bar "|." prints the vertical end line, while \bar "||" does not. Best, Gilles _______________________________________________ lilypond-user mailing list [email protected] http://lists.gnu.org/mailman/listinfo/lilypond-user
<<attachment: codagap.jpg>>
\version "2.12.3"
voltaI = \markup { \text \fontsize #2 \sans "1.+2." }
voltaII = \markup { \text \fontsize #2 \sans "letzt" }
\score {
<<
\new ChordNames \chordmode { es1. c2:sus4 r1 es f g }
\new Staff
\relative c'' {
\key g \major
\time 4/4
\set Score.repeatCommands = #(list(list 'volta voltaI) 'end-repeat)
g8 a g g~ g2~ | g r |
\set Score.repeatCommands = #'((volta #f))
\once \override Staff.BarLine #'transparent = ##t
\bar "|."
s4
\once \override Staff.BarLine #'extra-offset = #'(-8 . 0)
\bar "||"
\once \override Staff.KeyCancellation #'extra-offset = #'(-8 . 0)
\once \override Staff.KeySignature #'extra-offset = #'(-8 . 0)
\key f \major
\stopStaff
\once \override TextScript #'extra-offset = #'(-10 . 3)
s2.^\markup { \musicglyph #"scripts.segno" }
\set Score.repeatCommands = #(list(list 'volta voltaII))
\startStaff
\set Staff.printKeyCancellation = ##f
\key g \major
\override Staff.Clef #'full-size-change = ##t
\clef treble
\bar ""
g8 a g g~ g2~ | g1~ | g^\fermata |
\set Score.repeatCommands = #'((volta #f))
\bar "|."
}
>>
}
_______________________________________________ lilypond-user mailing list [email protected] http://lists.gnu.org/mailman/listinfo/lilypond-user
