lilypond-user
[Top][All Lists]
Advanced

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

Re: Song with two different verses, where the melody differs but in the


From: tisimst
Subject: Re: Song with two different verses, where the melody differs but in the last two measures
Date: Thu, 16 Jun 2016 12:23:57 -0700 (MST)



On Thu, Jun 16, 2016 at 1:18 PM, Bernhard Kleine [via Lilypond] <[hidden email]> wrote:
mehrstimmigText = \lyricmode {
    Gut, dass wir ein -- an -- der ha -- ben, gut, dass wir ein -- an -- der sehn,
    Sor -- gen, Freu -- den, Krä -- fte tei -- len und auf einem We -- ge gehn.
    \repeat unfold 2 { \skip 1 }
}
mehrstimmigZwei = \lyricmode {
    Gut,  dass wir nicht uns nur ha -- ben, dass der Kreis sich nie -- mals schließt,
    und dass Gott, von dem wir re -- den,
    \repeat unfold 2 { \skip 1 \skip 1 \skip 1 }
    hier in uns -- rer Mit -- te ist.  
}
 
This is almost sufficient. The next \skip 1 is to much to the right, one eigths to much. I do not see how to tune it.
\skip 3 or \skip 2 does not work.

Do you have any idea?

Bernhard

Looking over your code, there were a couple of things that needed to be fixed, but how about this:

%%%%%%%%%%%%%%%

\version "2.19.5"
\language "deutsch"

global = {
  \key c \major
  \time 4/4
}

RefrainSopran = \relative c'' {
  \global
  \override Stem.direction = #UP
  \repeat volta 2 { c4. c8 c4 c  | h a g e | a8 a a a a4 g | g2 h\rest | d,4. d8 d4 f | g e d c | }
  \alternative { { d8 d d d d4 e | d2 h'\rest } {  d,8 d d d d4 c | c2 h'\rest} }
}

RefrainAlt = \relative c' {
  \global 
  \override Stem.direction = #DOWN
  \slurDown
  \repeat volta 2 {e4. e8 e4 e | e e d d | c8 c c c f4 f | e2 s2 | d4. d8 d4 d | h h a a }
  \alternative { {a8 a a a a4 c | h2 s2 } { a8 a a a a4 a | g2 s2  \bar "|."}}  
}

RefrainTenor = \relative c' {
  \global 
  \clef bass
  \override Stem.direction = #UP
  \repeat volta 2 { g4. g8 g4 g |g a h g | f8 f f a c4 c | c2 s2 | f,4. f8 g4 a | g g e e }
  \alternative { { f8 f f f f4 a| g2 s2 } { f8 f f f f4 f |e2 s2 \bar "|."}}
}

RefrainBass = \relative c {
  \global 
  \clef bass
  \override Stem.direction = #DOWN
  \repeat volta 2 { e4. e8 e4 e |g g g g | a8 a a a a4 a | g2 d\rest | f4. f8 f4 f | g g c, c }
  \alternative { { f8 f f f f4 f| h,2 e\rest } { f8 f f f c4 c |e2 e\rest \bar "|."}}
}

einstimmigNoten = \relative c' {
  \global
  % Die Noten folgen hier.
  d4 a' r4 f8 d | c4 g' e c | d a' r4 f8 d| c4 g' d2| d4 c' h a |g gis a h | c8 c c c h4 a | g2. r4
  | d4 a' r4 f8 d | c4 g' e c | d a' r4 f8 d| c4 g' d2| d4 c' h a |g gis a h | c8 c c c h4 a | g2. r4\bar "|"
}

mehrstimmigTextI = \lyricmode {
  Gut, dass wir ein -- an -- der ha -- ben, gut, dass wir ein -- an -- der sehn,
  Sor -- gen, Freu -- den, Krä -- fte tei -- len und auf ein -- em We -- ge gehn.
}

mehrstimmigTextII = \lyricmode {
  Gut,  dass wir nicht uns nur ha -- ben, dass der Kreis sich nie -- mals schließt,
  und dass Gott, von dem wir re -- den, \repeat unfold 7 { \skip 1 } hier in uns -- rer Mit -- te ist.
}

\layout {
  indent = 0
}
\score {
  \new ChoirStaff <<
     \new Staff <<
      \new Voice = "RefrainS" {
        \RefrainSopran
      }
      \new Voice = "RefrainA" {
        \RefrainAlt
      }
      \new Lyrics \lyricsto "RefrainA" \mehrstimmigTextI
      \new Lyrics \lyricsto "RefrainA" \mehrstimmigTextII
    >>
    \new Staff <<
      \new Voice = "RefrainT" {
        \RefrainTenor
      }
      \new Voice = "RefrainB" {
        \RefrainBass
      }
    >>
  >>

%%%%%%%%%%%%%%%

HTH,
Abraham


View this message in context: Re: Song with two different verses, where the melody differs but in the last two measures
Sent from the User mailing list archive at Nabble.com.

reply via email to

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