lilypond-user
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

Re: "Mensurstriche" (barlines between systems) and Repeat signs.


From: David Kastrup
Subject: Re: "Mensurstriche" (barlines between systems) and Repeat signs.
Date: Fri, 01 Feb 2019 11:51:56 +0100
User-agent: Gnus/5.13 (Gnus v5.13) Emacs/27.0.50 (gnu/linux)

Bernhard Kleine <address@hidden> 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

reply via email to

[Prev in Thread] Current Thread [Next in Thread]