Alles Gute zum Geburtstag, DFYX.
Hier etwas Lilypond-Code
Code:
\version "2.12.3"
\header {
title = "Happy birthday DFYX"
}
\score {
\new StaffGroup <<
\new Staff \with { midiInstrument = #"violin" } \relative c''' {
\set Staff.instrumentName = #"Violin"
\tempo "Majestoso" 4 = 80
\clef treble
\time 3/4
\ottava #1
\partial 4 \times 2/3 { g4\f g8 }
a4 g c b2 \times 2/3 { g4 g8 }
a4 g d' c2 \times 2/3 { g4\pp\< c8 }
f4 e \times 2/3 { c4 d16 c }
b4 a\fermata\ff \times 2/3 { f'4 f8 }
e4 c b c2\fermata \bar "|."
}
\new GrandStaff <<
\new Staff \with { midiInstrument = #"viola" } \relative c'' {
\set Staff.instrumentName = #"Viola I"
\tempo "Majestoso" 4 = 80
\clef treble
\time 3/4
\partial 4 \times 2/3 { g4\f g8 }
a4 g c b2 \times 2/3 { g4 g8 }
a4 g d' c2 \times 2/3 { g4\pp\< c8 }
f4 e \times 2/3 { c4 d16 c }
b4 a\fermata\ff \times 2/3 { f'4 f8 }
e4 c b c2\fermata \bar "|."
}
\new Staff \with { midiInstrument = #"viola" } \relative c' {
\set Staff.instrumentName = #"Viola II"
\clef alto
\time 3/4
\partial 4 \times 2/3 { e4\f e8 }
e2 g4 g2 \times 2/3 { d4 d8 }
f2 g4 g2 \times 2/3 { e4\pp\< g8 }
c2 g4 f2\fermata\ff \times 2/3 { c'4 c8 }
c4 g2 ~ g2\fermata \bar "|."
}
\new Staff \with { midiInstrument = #"viola" } \relative c' {
\set Staff.instrumentName = #"Viola III"
\clef alto
\time 3/4
\partial 4 \times 2/3 { c4\f c8 }
c2 e4 d2 r4
d2 f4 e2 \times 2/3 { c4\pp\< e8 }
g2 e4 c2\fermata\ff \times 2/3 { a'4 a8 }
g4 e d e2\fermata \bar "|."
}
>>
\new Staff \with { midiInstrument = #"cello" } \relative c {
\set Staff.instrumentName = #"Cello"
\clef bass
\time 3/4
\partial 4 r4
c4\f d e f2 d4
f4 g2 e2 g4\pp\<
c2 g8 c, b4 c\fermata\ff \times 2/3 { f4 f8 }
e4 c d e2\fermata \bar "|."
}
\new Staff \with { midiInstrument = #"contrabass" } \relative c {
\set Staff.instrumentName = #"Double Bass"
\transposition c
\clef bass
\time 3/4
\partial 4 r4
c2.\f g'2 g4
g2 b4 c2 c4\pp\< ~
c2 ~ c8 g f2\fermata\ff \times 2/3 { c'4 c8 }
g2 b4 c,2\fermata \bar "|."
}
>>
\layout { indent = 3\cm }
\midi {
\context {
\Score
tempoWholesPerMinute = #(ly:make-moment 80 4)
}
}
}