%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% % Globe % eNoz, 2013 % From the original soundtrack of the feature film "Midnight Globe" (2013) % % Typeset by Breizh Partitions (2014) % This sheet music version: 1.0 % % Une partition gratuite de http://www.breizh-partitions.fr % Free sheet music from http://www.celtic-scores.com %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% \version "2.16.0" #(set-global-staff-size 16) \header { title = "Globe" arranger = "Typeset by Breizh Partitions" composer = "eNoz (2013)" date = "2013" enteredby = "Breizh Partitions" lastupdated = "2014/03/02" % instrument = "Violin, Cello and Piano" meter = "\"Midnight Globe\" original soundtrack" tagline = \markup { \override #'(box-padding . 1.0) \override #'(baseline-skip . 2.7) \box \center-column { \small \line { \hspace #5 Une partition du site \with-url #"http://www.breizh-partitions.fr" { \teeny www. Breizh-Partitions \teeny .fr gravée à l’aide de \with-url #"http://www.LilyPond.org" { \teeny www. LilyPond \teeny .org } }} \line { \small \italic { Sheet music from \with-url #"http://www.celticscores.com" { \teeny www. CelticScores \teeny .com engraved using \with-url #"http://www.LilyPond.org" { \teeny www. LilyPond \teeny .org }} }} \line { \teeny { Creative Commons Attribution-NonCommercial 3.0 • \with-url #"https://creativecommons.org/licenses/by-nc-sa/3.0" https://creativecommons.org/licenses/by-nc-sa/3.0 } } \line{ \vspace #1.5 \general-align #Y #DOWN { \epsfile #X #10 #"by-nc-sa.eu.eps" } } } }} tempoMark = { \once \override Score.RehearsalMark #'self-alignment-X = #LEFT \once \override Score.RehearsalMark #'break-align-symbols = #'(time-signature key-signature) \once \override Staff.TimeSignature #'break-align-anchor-alignment = #LEFT \mark \markup "Celestial" } global = { \tempoMark \key a \minor \time 12/8 } violinVoice = \relative c' { \global \dynamicUp \repeat volta 2{ r1. | r1. | r1. | r1. | e8 a c e c e a e c e c a | e a b d b d e d b d b a | f a c e c e a e c e c a | f a c e c e a e c e c a | e8 a c e c e a e c e c a | e a b d b d e d b d b a | f a c e c e a e c e c a | f a c e c e a e c e c a | \bar "||" e8 a c e c e a e c e c a | e a b d b d e d b d b a | f a c e c e a e c e c a | f a c e c e a e c e c a | e8 a c e c e a e c e c a | e a b d b d e d b d b a | f a c e c e a e c e c a | } \alternative { { e a c e c e a e c' a e a, } { e a c e c e a e c a e a, } } \bar "|." } celloVoice = \relative c' { \global r1. | r1. | r1. | r1. | r1. | r1. | r1. | r1. | a1. | g1. | a1. | e'1. | a,,1. | b1. | c1.~ | c1. | a1. | g1. | a1. | e1. | e1. | } right = \relative c'' { \global a'16 e c a c e a e c a c e a e c a c e a e c a c e | g d b g' d b g' d b g' d b g' d b d b d g d b g' d b | f' e c a c e f e c a c e f e c a c e f e c a c e | f e c a c e f e c a c e f e c f e c f e a, c e f | \bar "||" a e c a c e a e c a c e a e c a c e a e c a c e | g d b g' d b g' d b g' d b g' d b d b d g d b g' d b | f' e c a c e f e c a c e f e c a c e f e c a c e | f e c a c e f e c a c e f e c f e c f e a, c e f | \bar "||" \clef "G^8" a'16 e c a c e a e c a c e a e c a c e a e c a c e | g d b g' d b g' d b g' d b g' d b d b d g d b g' d b | f' e c a c e f e c a c e f e c a c e f e c a c e | f e c a c e f e c a c e f e c f e c f e a, c e f | \clef treble a,16 e c a c e a e c a c e a e c a c e a e c a c e | g d b g' d b g' d b g' d b g' d b d b d g d b g' d b | f' e c a c e f e c a c e f e c a c e f e c a c e | f e c a c e f e c a c e f e c f e c f e a, c e f | r1. | r1. | r1. | r1. | r1. | } left = \relative c' { \global 1. | 1. | 1.~ | 1. | 1. | 1. | 1.~ | 1. | %\clef treble a''16 e c a c e a e c a c e a e c a c e a e c a c e | g d b g' d b g' d b g' d b g' d b d b d g d b g' d b | f' e c a c e f e c a c e f e c a c e f e c a c e | f e c a c e f e c a c e f e c f e c f e a, c e f | 1. | 1. | 1.~ | 1. | 1. | 1. | 1.~ | 1. | 1. | } violinPart = \new Staff \with { instrumentName = "Violin" midiInstrument = "violin" } { \violinVoice } celloPart = \new Staff \with { instrumentName = "Cello" midiInstrument = "cello" } { \clef bass \celloVoice } pianoPart = \new PianoStaff \with { instrumentName = "Piano" } << \new Staff = "right" \with { midiInstrument = "acoustic grand" } \right \new Staff = "left" \with { midiInstrument = "acoustic grand" } {\left } >> \score { << \violinPart \celloPart \pianoPart >> \layout { } \midi { \context { \Score % 4. = 90 tempoWholesPerMinute = #(ly:make-moment 135 4) } } }