lilypond-user
[Top][All Lists]
Advanced

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

Re: How to add chordnames to the solution


From: Bernhard Kleine
Subject: Re: How to add chordnames to the solution
Date: Fri, 17 Jun 2016 13:24:31 +0200
User-agent: Mozilla/5.0 (Windows NT 6.1; WOW64; rv:45.0) Gecko/20100101 Thunderbird/45.1.1

Sorry


Am 17.06.2016 um 12:02 schrieb Bernhard Kleine:
> Hi,
>
> I have included an condensed example. The template has chordnames
> included and I would like to include them. With the repitition the
> placing of chordnames is not at all evident. Please point me to a solution.
>
> Kind regards
>
> Bernhard
\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 |  }
  \alternative { { d8 d d d d4 e } {  d8 d d d d4 c } }
}
RefrainAlt = \relative c' {
  \global
  \override Stem.direction = #DOWN
  \slurDown
  \repeat volta 2 {e4. e8 e4 e | e e d d |  }
  \alternative { {a8 a a a a4 c  } { a8 a a a a4 a   \bar "|."}} 
}
RefrainTenor = \relative c' {
  \global
  \clef bass
  \override Stem.direction = #UP
  \repeat volta 2 { g4. g8 g4 g |g a h g |  }
  \alternative { { f8 f f f f4 a } { f8 f f f f4 f \bar "|."}}
}
RefrainBass = \relative c {
  \global
  \clef bass
  \override Stem.direction = #DOWN
  \repeat volta 2 { e4. e8 e4 e |g g g g |   }
  \alternative { { f8 f f f f4 f } { f8 f f f c4 c | \bar "|."}}
}

mehrstimmigText = \lyricmode {
    Gut, dass wir ein -- an -- der ha -- ben,
     und auf ei -- nem We -- ge
    \repeat unfold 2 { \skip 1 }
}
mehrstimmigZwei = \lyricmode {
    Gut,  dass wir nicht uns nur ha -- ben,
    \repeat unfold 6 { \skip 1 }
    hier in uns -- rer Mit -- te   
}

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

   




reply via email to

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