%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% % % "I Move On (Sintel's Song)" % % From the short film "Sintel", produced by the Blender Foundation in 2010 % % Composed by Jan Morgenstern % Lyrics by Esther Wouda % % Lead sheet by Jan Morgenstern, typeset with LilyPond 2.13.35 % with improvements by Xavier Scheuer (thanks!). % % This document is distributed under the terms of the Creative Commons % Attribution-NonCommercial-NoDerivs 3.0 Unported License. For the % complete license text, visit: % http://creativecommons.org/licenses/by-nc-nd/3.0/ % % Watch and download Sintel at www.sintel.org % Visit Jan's website at www.janmorgenstern.com % % Last update: 2010-10-22 % %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% \version "2.13.35" \include "english.ly" #(set-global-staff-size 18) \pointAndClickOff \paper { top-margin = 1.5\cm bottom-margin = 1.5\cm left-margin = 1.5\cm right-margin = 1.5\cm after-title-spacing = #'((padding . 4.0)) between-system-spacing = #'((padding . 4.0)) } \header { title = "I Move On (Sintel's Song)" subtitle = "From the short film “Sintel”" composer = "Composed by JAN MORGENSTERN" poet = "Lyrics by ESTHER WOUDA" tagline = \markup { \override #'(box-padding . 1.0) \box \center-column { \line { Typeset by Jan Morgenstern with LilyPond 2.13.35. Copyright © 2010. } \line { \italic "Distributed under the terms of the Creative Commons Attribution-NonCommercial-NoDerivs 3.0 license." } \line { \bold { \with-url #"www.sintel.org" www.sintel.org \hspace #0.5 • \hspace #0.5 \with-url #"www.janmorgenstern.com" www.janmorgenstern.com }} } } } melody = \relative g' { R1*6 \break R1*2 | r8 g g bf f d4. | c4. bf8 d2 | r8 c c ef ef d4. | c4. f8 f4 ef | r8 g8 g bf bf2 | a8 g f c ef4. r8 | d8 c bf d c4 f | bf,2. r4 | \repeat volta 2 { r8 g' g bf f d4. | c4. bf8 d2 | r8 c c ef ef d4. | c4. f8 f4 ef | r8 g8 g bf bf2 | f8 ef f af af4. r8 | af8 gf gf f af4. bf8 | bf2. r8 c16 d | ef2~ ef8 c bf ef, | bf'2. r8 c16 d | ef2~ ef8 c f c | c4. bf8 g4. bf8 | ef,4. r8 g8 bf8 ef,8. f16 | } \alternative { { g2. r4 R1 R1 } { g2~ g8 r8 b4 } } c2^\markup { \italic "rit." } g8 bf f c ef1\fermata \bar "|." } chordNames = \chordmode { \set chordChanges = ##t % don't show repeated chords c2:m bf/d | f:m g:m | c2:m bf | f:m af | ef2 g:m | f c:m | g2:m f | ef1 | c2:m bf/d | f:m g:m | c2:m bf | f:m af | ef2 g:m | f c:m | g2:m f | ef1 | \repeat volta 2 { % required for MIDI output c2:m bf:5.9/d | f:m/c g:m | c2:m bf:5.9/d | f:m/c af4:sus2 af | ef2 g:m | df/f af | cf1 | bf2:7sus4 bf2:7 | c2:m c8:m af g:m af | ef2 bf4:sus4 bf | c2:m f | af g:m | c:m g4:m af | } \alternative { { ef2 g | c1:m | c1:m | } { ef2 g:7 | } } af2 f:m9 | c1:m | } lyricsVerseOne = \lyricmode { \set stanza = #"1. " Come take my jour -- ney in -- to night come be my sha -- dow, walk at my side and when you see all that I have seen can you tell me love from pride? } lyricsVerseTwo = \lyricmode { \set stanza = #"2. " I have been wai -- ting all this time for one to wake me, one to call mine so when you're near all that you hold dear do you fear what you will find? } lyricsVerseThree = \lyricmode { \set stanza = #"3. " I will be liste -- ning for the drum to call me o -- ver, far a -- way from my ten -- der youth and the ve -- ry truth show -- ing me what I've be -- come } lyricsChorus = \lyricmode { \set stanza = #"C: " As the dawn breaks through the night I move on, for -- e -- ver long -- ing for the home I found in your eyes % 1st alternative eyes your % 2nd alternative voice saw me through the night. } \score { << \new ChordNames = "chordNames" \chordNames \new Staff { \new Voice = "melody" { \time 4/4 \key c \minor \tempo 4 = 72 \melody } } \new Lyrics \lyricsto "melody" { \lyricsVerseOne << { \lyricsVerseTwo \lyricsChorus } \new Lyrics { \lyricsVerseThree } >> } >> \layout {} } \score { \unfoldRepeats << \new Staff { \set Staff.midiInstrument = #"acoustic grand" \set Staff.midiMinimumVolume = #0.7 \set Staff.midiMaximumVolume = #0.9 << R1\f \melody >> } \new Staff { \set Staff.midiInstrument = #"string ensemble 2" \set Staff.midiMinimumVolume = #0.2 \set Staff.midiMaximumVolume = #0.5 << R1\p \chordNames >> } >> \midi { \context { \Score tempoWholesPerMinute = #(ly:make-moment 72 4) } } }