Beschreibung

7. Sinfonie von Sibelius, Takt 22-31

Quelle

Mutopia-Projekt

Urheber bzw.
Nutzungsrechtinhaber

Jean Sibelius

Datum

2014-07-04

Lizenz

Der Inhalt dieses Musikbeispiels ist urheberrechtlich geschützt und steht nicht unter einer freien Lizenz. Er stellt ein Kleinzitat im Rahmen des Urheberrechtsgesetzes dar, dessen Verwendung nur unter den Bedingungen des Zitatrechts gestattet ist.

Diese Datei ist möglicherweise nicht mit den Richtlinien von Wikimedia Commons kompatibel.

Es sollte individuell geprüft werden, ob sie nach Wikimedia Commons verschoben werden darf.


Do not transfer this file to Wikimedia Commons without an individual review!


LilyPond-Quelltext

\paper{
  hsize = 2\cm
  topmargin = 5\cm
  bottommargin = 3\cm
  raggedlastbottom = ##t
}

\header {
%%  title = "7. Sinfonie"
%%  composer = "Jean Sibelius, Op. 105"
tagline = ""  % removed
}

\version "2.4.0"
global = {
  \key c \major
  \time 3/2
  \pointAndClickOff
}

sopranoMusic = \relative c {\set Score.currentBarNumber = #22
                              \clef treble  \oneVoice r2^\markup{"" \hspace #-5 \raise #2 {Bratschen, Cellos}}_\markup{"" \hspace #-6 \raise #-3 \italic {mezza }} \voiceOne g2-- a2-- |
b2. (a4) b2-- | c2-- d2-- a2-- | b2-- d2-- (g2--) | d1._\markup{"" \raise #-3 \italic {segue}}  | c1 d4 (c4) | b2._\markup{"" \raise #-5 \italic {poco a poco meno \bold \huge p}} c2 (e4) | g1 g,2 ~ (|
g4 a4) bes2 a4 g4 | a1
}

altoMusic = \relative c' {\clef treble    s2 b2-- c2-- | d1. | e2-- fis2 -- c2-- | g'2 a1 ~|
a1 g4. (a8) | g2 (c,2) c2 | f1 (e4) c4 ~ (| c4 d4) es4 f4 bes,2 ~ | bes2. bes2. | a2 s2
}

tenorMusic = \relative c {\clef bass \oneVoice r2 \voiceOne g'2-- g2-- | f1. | g2-- a2-- fis2-- | g2 b1 | b1 b2 | c2. g2. ~ |
g4 g2 g2 a4 ~ | a4 b4 c4 d4 <es es,>2 ~ | <es es,>1 <f f,>4 <es es,>4 | <d d,>4 s2.}

bassMusic = \relative c { \clef bass     s2 f2-- e2-- | d2-- g2-- d2-- | c1 b4-- a4-- | g2-- f'1 ~|
f2 g2 f2 | e2 f2 e2 | d2._\markup{"" \raise #-2 {+ Bass}} (c4) c4 <a' a,>4 | <g g,>4 <f f,>4 <es es,>2 es,2 | es4 f4 g2 f4 es4 | f4 s2.
}

\score {
  \context StaffGroup <<
    \context Staff = upper << {\context Voice =  sopranoVoice { \voiceOne <<  \global \sopranoMusic>>}}
                              {\context Voice =  altoVoice { \voiceTwo <<  \global \altoMusic>>}}
                            >>
    \context Staff = lower << {\context Voice =  tenorVoice { \voiceOne <<  \global \tenorMusic>>}}
                              {\context Voice =  bassVoice { \voiceTwo <<  \global \bassMusic>>}}>>
  >>
  \layout{}
}