music/watching-the-sunrise.ly

86 lines
1.8 KiB
Plaintext

\version "2.18.2"
\language "english"
\header {
title = "Watching the Sunrise"
composer = "Tommy Montgomery"
copyright = "(c) 2012 Tommy Montgomery"
}
defaultStuff = {
\key e \major
\numericTimeSignature
\time 4/4
\tempo "Slowly" 4 = 76
}
pianoRight = \new Staff = "right" \with {
midiInstrument = "acoustic grand"
} {
\defaultStuff
\clef treble \relative c''' {
r2 \grace { b16 e fs } b a gs e b a gs e ~ |
e4 r4 r8. b,16 e b <a' e'>8 ~ |
q4 r4 b''16 a s8 a,,16 gs s8 |
r2 r8 r16 b, <fs' a>4 |
<e gs>4 r4 r4 r8 <b' fs' a>8 ~ |
q8 <b e gs>4 r8 r4 r8 <b' fs' a>8 ~ |
q8 <b e gs>4 r8 r4 r8 <b, fs' a>8 ~ |
q8 <b e gs>4 r8 r4 \grace { e,16 fs gs } a8( gs) ~ |
gs4 r4 r2 |
}
}
pianoLeft = \new Staff = "left" \with {
midiInstrument = "acoustic grand"
} {
\defaultStuff
\clef bass \relative c {
r1 |
r2 a16 e' a8 ~ a4 ~ |
a4 r4 r8 \change Staff = "right" gs''16 a \change Staff = "left" s8 gs,,16 fs ~ |
fs4 r4 e,16 b' e8 ~ e4 |
r1 | r1 | r1 | r2 r4 r8. e,16 |
e,2. ~ e8. e'16 |
}
}
piano = \new PianoStaff \with { instrumentName = "Piano" } <<
\pianoRight
\pianoLeft
>>
acousticGuitar = \new Staff \with {
instrumentName = "Guitar (ac.)"
midiInstrument = "acoustic guitar (steel)"
} {
\defaultStuff
\clef treble \relative c {
e16^"doubled by elec. guitar w/ chorus" e' b' b e2. |
e,,16 a' cs b e2. |
e,,16 e' b' b e2. |
e,,16 fs' a b fs'2. |
e,,16 e' b' e, b' b e b e,, e' b' e, b' b e b |
a, a' cs a b cs e b a, a' cs a b cs e b |
e,, e' b' e, b' b e b e,, e' b' e, b' b e b |
e,, fs' a fs b a fs' b, e,, fs' a fs b a fs' b, |
e,, e' b' e, b' b e b e,, e' b' e, b' b e b |
e,, e' b' e, b' b e b e,, e' b' e, b' b e b |
}
}
\score {
<<
\piano
\acousticGuitar
>>
\layout { }
\midi {}
}