nächstes: , voriges: Streichquartett, aufwärts: Vorlagen


A.4 Vokalensemble

A.4.1 SATB-Partitur

Dieses Beispiel ist für vierstimmigen Gesang (SATB). Bei größeren Stücken ist es oft sinnvoll, eine allgemeine Variable zu bestimmen, die in allen Stimmen eingefügt wird. Taktart und Vorzeichen etwa sind fast immer gleich in allen Stimmen.

     
     \version "2.11.51"
     global = {
        \key c \major
        \time 4/4
     }
     
     sopMusic = \relative c'' {
        c4 c c8[( b)] c4
     }
     sopWords = \lyricmode {
        hi hi hi hi
     }
     
     AltNoten = \relative c' {
        e4 f d e
     }
     AltText =\lyricmode {
        ha ha ha ha
     }
     
     TenorNoten = \relative c' {
        g4 a f g
     }
     TenorText = \lyricmode {
        hu hu hu hu
     }
     
     BassNoten = \relative c {
        c4 c g c
     }
     BassText = \lyricmode {
        ho ho ho ho
     }
     
     \score {
        \new ChoirStaff <<
           \new Lyrics = sopranos { s1 }
           \new Staff = women <<
              \new Voice =
                "sopranos" { \voiceOne << \global \sopMusic >> }
              \new Voice =
                "altos" { \voiceTwo << \global \AltNoten >> }
           >>
           \new Lyrics = "altos" { s1 }
           \new Lyrics = "tenors" { s1 }
           \new Staff = men <<
              \clef bass
              \new Voice =
                "tenors" { \voiceOne <<\global \TenorNoten >> }
              \new Voice =
                "basses" { \voiceTwo <<\global \BassNoten >> }
           >>
           \new Lyrics = basses { s1 }
     
           \context Lyrics = sopranos \lyricsto sopranos \sopWords
           \context Lyrics = altos \lyricsto altos \AltText
           \context Lyrics = tenors \lyricsto tenors \TenorText
           \context Lyrics = basses \lyricsto basses \BassText
        >>
     
        \layout {
           \context {
              % a little smaller so lyrics
              % can be closer to the staff
              \Staff
              \override VerticalAxisGroup #'minimum-Y-extent = #'(-3 . 3)
           }
        }
     }

[image of music]

A.4.2 SATB-Partitur und automatischer Klavierauszug

In diesem Beispiel wird ein automatischer Klavierauszug zu der Chorpartitur hinzugefügt. Das zeigt eine der Stärken von LilyPond – man kann eine Variable mehr als einmal benutzen. Wenn Sie irgendeine Änderung an einer Chorstimme vornehmen, (etwa tenorMusic), verändert sich auch der Klavierauszug entsprechend.

     
     \version "2.11.51"
     global = {
        \key c \major
        \time 4/4
     }
     
     sopMusic = \relative c'' {
        c4 c c8[( b)] c4
     }
     sopWords = \lyricmode {
        hi hi hi hi
     }
     
     AltNoten = \relative c' {
        e4 f d e
     }
     AltText =\lyricmode {
        ha ha ha ha
     }
     
     TenorNoten = \relative c' {
        g4 a f g
     }
     TenorText = \lyricmode {
        hu hu hu hu
     }
     
     BassNoten = \relative c {
        c4 c g c
     }
     BassText = \lyricmode {
        ho ho ho ho
     }
     
     \score {
       <<
         \new ChoirStaff <<
           \new Lyrics = sopranos { s1 }
           \new Staff = women <<
             \new Voice =
               "sopranos" { \voiceOne << \global \sopMusic >> }
             \new Voice =
               "altos" { \voiceTwo << \global \AltNoten >> }
           >>
           \new Lyrics = "altos" { s1 }
           \new Lyrics = "tenors" { s1 }
           \new Staff = men <<
             \clef bass
             \new Voice =
               "tenors" { \voiceOne <<\global \TenorNoten >> }
             \new Voice =
               "basses" { \voiceTwo <<\global \BassNoten >> }
           >>
           \new Lyrics = basses { s1 }
     
           \context Lyrics = sopranos \lyricsto sopranos \sopWords
           \context Lyrics = altos \lyricsto altos \AltText
           \context Lyrics = tenors \lyricsto tenors \TenorText
           \context Lyrics = basses \lyricsto basses \BassText
         >>
       \new PianoStaff <<
         \new Staff <<
           \set Staff.printPartCombineTexts = ##f
           \partcombine
           << \global \sopMusic >>
           << \global \AltNoten >>
         >>
         \new Staff <<
           \clef bass
           \set Staff.printPartCombineTexts = ##f
           \partcombine
           << \global \TenorNoten >>
           << \global \BassNoten >>
         >>
        >>
       >>
       \layout {
         \context {
           % a little smaller so lyrics
           % can be closer to the staff
           \Staff
             \override VerticalAxisGroup #'minimum-Y-extent = #'(-3 . 3)
         }
       }
     }

[image of music]

A.4.3 SATB mit zugehörigen Kontexten

In diesem Beispiel werden die Texte mit den Befehlen alignAboveContext und alignBelowContext über und unter dem System angeordnet.

     
     \version "2.11.51"
     global = {
       \key c \major
       \time 4/4
     }
     
     sopMusic = \relative c'' {
       c4 c c8[( b)] c4
     }
     sopWords = \lyricmode {
       hi hi hi hi
     }
     
     AltNoten = \relative c' {
       e4 f d e
     }
     AltText =\lyricmode {
       ha ha ha ha
     }
     
     TenorNoten = \relative c' {
       g4 a f g
     }
     TenorText = \lyricmode {
       hu hu hu hu
     }
     
     BassNoten = \relative c {
       c4 c g c
     }
     BassText = \lyricmode {
       ho ho ho ho
     }
     
     \score {
       \new ChoirStaff <<
          \new Staff = women <<
             \new Voice =
               "sopranos" { \voiceOne << \global \sopMusic >> }
             \new Voice =
               "altos" { \voiceTwo << \global \AltNoten >> }
          >>
          \new Lyrics \with {alignAboveContext=women} \lyricsto sopranos \sopWords
          \new Lyrics \with {alignBelowContext=women} \lyricsto altos \AltText
     % we could remove the line about this with the line below, since we want
     % the alto lyrics to be below the alto Voice anyway.
     %    \new Lyrics \lyricsto altos \AltText
     
          \new Staff = men <<
             \clef bass
             \new Voice =
               "tenors" { \voiceOne <<\global \TenorNoten >> }
             \new Voice =
               "basses" { \voiceTwo <<\global \BassNoten >> }
          >>
     
          \new Lyrics \with {alignAboveContext=men} \lyricsto tenors \TenorText
          \new Lyrics \with {alignBelowContext=men} \lyricsto basses \BassText
     % again, we could replace the line above this with the line below.
     %    \new Lyrics \lyricsto basses \BassText
       >>
     
       \layout {
          \context {
             % a little smaller so lyrics
             % can be closer to the staff
             \Staff
             \override VerticalAxisGroup #'minimum-Y-extent = #'(-3 . 3)
          }
       }
     }
     
     
     \score {
       \new ChoirStaff <<
          \new Staff = women <<
             \new Voice =
               "sopranos" { \voiceOne << \global \sopMusic >> }
             \new Voice =
               "altos" { \voiceTwo << \global \AltNoten >> }
          >>
     
          \new Lyrics \with {alignAboveContext=women} \lyricsto sopranos \sopWords
          \new Lyrics \lyricsto altos \AltText
     
          \new Staff = men <<
             \clef bass
             \new Voice =
               "tenors" { \voiceOne <<\global \TenorNoten >> }
             \new Voice =
               "basses" { \voiceTwo <<\global \BassNoten >> }
          >>
     
          \new Lyrics \with {alignAboveContext=men} \lyricsto tenors \TenorText
          \new Lyrics \lyricsto basses \BassText
       >>
     
       \layout {
          \context {
             % a little smaller so lyrics
             % can be closer to the staff
             \Staff
             \override VerticalAxisGroup #'minimum-Y-extent = #'(-3 . 3)
          }
       }
     } 

[image of music]

Diese Seite ist für LilyPond-2.11.58 (Entwicklungszweig).

Fehler bitte an http://post.gmane.org/post.php?group=gmane.comp.gnu.lilypond.bugs melden.

Ihre Vorschläge für die Dokumentation sind willkommen.

Andere Sprachen: English, español.