Bernhard Kleine <bernhard.kle...@gmx.net> writes:

> I have the following and cannot find a way to have the repeat/volta
> signs displayed:

Seems pretty simple to me.

\version "2.19.82"
\language "deutsch"
\layout {
  \context {
    \Voice
    \consists "Melody_engraver"
    \override Stem #'neutral-direction = #'()
  }
}
global = {
  \hide Staff.BarLine
  \key c \major
  \time 3/4
  \tempo 4=100
}
sopranoVoice = \relative c'' {
  \global
  \dynamicUp
  % Die Noten folgen hier.
  \repeat volta 2 { c4 a h | c2 c4 | e f d
		    \once \undo \hide Staff.BarLine
  }
  e d c h2 h4
}
verseSopranoVoiceOne = \lyricmode {
  % Liedtext folgt hier.
  \set stanza = #"1. "
 }
sopranoVoicePart = \new Staff \with {
  instrumentName = "Sopran"
  shortInstrumentName = "S."
} { \sopranoVoice }
mezzoSopranoVoicePart = \new Staff \with {
  instrumentName = "Mezzosopran"
  shortInstrumentName = "Ms."
} { \sopranoVoice }
alle = \new StaffGroup {
<<
  \sopranoVoicePart
  \mezzoSopranoVoicePart 
>>
}
\score {
  <<
    \alle
  >>
  \layout { }
}

-- 
David Kastrup
_______________________________________________
lilypond-user mailing list
lilypond-user@gnu.org
https://lists.gnu.org/mailman/listinfo/lilypond-user

Reply via email to