lilypond-user
[Top][All Lists]
Advanced

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

AW: New verses


From: Dr. Bernhard Kleine
Subject: AW: New verses
Date: Sun, 10 May 2015 15:20:21 +0200

Dear Klaus, 
Thank you very much. The example is very instructive. However I lost the 
information in the header, it is still written, but not used.
I am lost.
Bernhard

-----Ursprüngliche Nachricht-----
Von: address@hidden [mailto:address@hidden Im Auftrag von Klaus Blum
Gesendet: Sonntag, 10. Mai 2015 11:25
An: address@hidden
Betreff: Re: New verses

Hallo Bernhard, 

Dr. Bernhard Kleine wrote
> I failed to add a second (and third to fifth) verse to the following
> example.

there should be no problem if you add the following verses in the same way
you added the first one. 
Verses below the score can be added with a separate \markup block.
One last remark: I took the \header section out of the \score block because
the title etc. didn't show up. 
I hope this helps.

Cheers, 
Klaus

% ----------------------------------------------------------------------
\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.
}

versetenorII = \lyricmode {
  % Liedtext folgt hier.
  \set stanza = #"2. "
  Ein zwei -- ter Vers folgt hier so -- gleich
}

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

  \new Lyrics \with {
    alignAboveContext = "men"
    \override VerticalAxisGroup #'staff-affinity = #up
  } \lyricsto "tenor" \versetenorII
>>

\header {
  title = "Der Mann im Mond"
  composer = "J.P. Hebel"
  tagline = \markup {
    gesetzt durch Bernhard Kleine 2015
  }
}

\score {
  <<
    \choirPart
  >>
  \layout { }
  \midi {
    \tempo 4=100
  }
}

\markup \vspace #3

\markup {
  \fill-line {
    \null
    \left-column {
      \line{
        \bold "3. "
        \left-column {
         "Ein dritter Vers"
         "folgt hier sogleich" 
         " "
        }
      }
      \line{
        \bold "4. "
        \left-column {
         "Ein vierter Vers"
         "folgt hier sogleich"
         " "
        }
      }
    }
    \null
  }
}

% ----------------------------------------------------------------------



--
View this message in context: 
http://lilypond.1069038.n5.nabble.com/New-verses-tp176383p176384.html
Sent from the User mailing list archive at Nabble.com.

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




reply via email to

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