lilypond-user
[Top][All Lists]
Advanced

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

New verses


From: Dr. Bernhard Kleine
Subject: New verses
Date: Sun, 10 May 2015 10:55:01 +0200

Good morning,

 

I failed to add a second (and third to fifth) verse to the following example.

Can you please advice.

Answer only to the group please.

 

Bernhard

 

\version "2.19.5"

\language "deutsch"

global = {

  \key d \major

  \time 2/4

}

 

soprano = \relative c' {

  \global

  % Die Noten folgen hier.

  \dynamicUp

  \partial 8  a'8 | a8. d16 d8 d8|

}

 

alto = \relative c' {

  \global

  \dynamicUp

  \partial 8  a'8 | a8. d16 d8 d8|

}

 

tenor = \relative c' {

  \global

  % Die Noten folgen hier.

  \partial 8 a8| a8. fis16 fis8 fis |

}

 

versetenor = \lyricmode {

  % Liedtext folgt hier.

  \set stanza = #"1. "

  Lueg Mue -- ter -- li wa isch im Mond?

  hä s'isch denn it en Ma.

  jo, wä -- ger -- li i sin än scho er hät e Tschö -- bli a, er hät e Tschö -- bli a.

 

}

 

choirPart = \new ChoirStaff <<

  \new Staff \with {

    instrumentName = \markup \center-column { "Sopran" "Alt" }

  } <<

    \new Voice = "soprano" { \voiceOne \soprano }

    \new Voice = "alto" { \voiceTwo \alto }

  >>

 

  \new  Staff = "men" \with {

    instrumentName = \markup \center-column { "Tenor/Bass" }

  } <<

    \clef bass

    \new Voice = "tenor"  { \voiceOne \tenor }

  >>

  \new Lyrics \with {

    alignAboveContext = "men"

    \override VerticalAxisGroup #'staff-affinity = #up

  } \lyricsto "tenor" \versetenor

>> 

 

 

\score {

  \header {

    title = "Der Mann im Mond"

    composer = "J.P. Hebel"

    tagline = \markup {

      gesetzt durch Bernhard Kleine 2015

    }

  }

  <<

    \choirPart

  >>

  \layout { }

  \midi {

    \tempo 4=100

  }

}


reply via email to

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