\version "2.4.2"

% Speak Softly Love (Love Theme from "The Godfather")
% Music by Nino Rota
% 
% typeset for his own pleasure (and backup of the bought original)
% by Nikos Kouremenos <kourem at gmail DoT com>

upper =  {
	\relative c'' {
		\context Voice = "upper" {
			
			% bar 1 (NOTE: in score this is bar 0)
			\partial 8*3
			g8_" "_\mf c ees
			
			\repeat volta 2 {
				% bar 2
				d c ees c
				d c aes bes
				
				% bar 3
				g2~ g8 g c ees
				
				% bar 4
				d c ees c
				d c g ges
				
				% bar 5
				f2~ f8 f8 aes b
				
				% bar 6
				d2~ d8 f, aes b
				
				% bar 7
				c2~ c8 c, ees bes'
				
				% bar 8
				aes g bes aes
				aes g g b,
				
				% bar 9
				\stemUp
				c2~ c8 c' c ces
				\stemNeutral
				
				% bar 10
				bes2 d4 c8 aes
				
				% bar 11
				g2~ g8 g bes g
				
				% bar 12
				f2~ f8 f aes fis
				
				% bar 13
				g2~ g8 
				
				% now THE SAME from bar#1 to bar#8
				% except last note in bar#8 is one octave higher
				% so old-fashioned copy/paste
				
				g8 c ees
				
				% bar 14
				d c ees c
				d c aes bes
				
				% bar 15
				g2~ g8 g c ees
				
				% bar 16
				d c ees c
				d c g ges
				
				% bar 17
				f2~ f8 f8 aes b
				
				% bar 18
				d2~ d8 f, aes b
				
				% bar 19
				c2~ c8 c, ees bes'
				
				% bar 20
				aes g bes aes
				aes g g b
			}
			% repeat the above forever :)
			% remember: nobody is supposed to shoot the pianist
			
			\alternative { { c2~c8 g c ees } { <ees, c'\fermata>1 \bar "|."} }

		}
	}
}


lower =  {
	\relative c {
		\context Voice = "lower" {
			\clef bass
			
			% bar 1 (NOTE: bar 0 in score)
			\partial 8*3
			r8 r4
			
			\repeat volta 2 {
				% bar 2
				c c'
				c, f
				
				% bar 3
				c c'
				c, c'
				
				% bar 4
				c, c'
				ees,, c''
				
				% bar 5
				f,, f'
				f, f'
				
				% bar 6
				f, f'
				f, f'
				
				% bar 7
				c c'
				c,8 r r4
				
				% bar 8
				g c'
				g, g'
				
				% bar 9
				c, c'
				<c, c'>8
				r r4
				
				% bar 10
				d,--
				bes''
				bes, bes'
				
				% bar 11
				ees,, ees'
				ees, ees'
				
				% bar 12
				f,-- des''
				aes, f'
				
				% bar 13
				g, g'
				<g, g'>8
				r r4
				
				% bar 14
				c c'
				c, f
				
				% bar 15
				c c'
				c, c'
				
				% bar 16
				c, c'
				c, c'
				
				% bar 17
				c, f f8 r r4
				
				% bar 18
				f,4 f'
				f, f'
				
				% bar 19
				c c'
				c, c'
				
				% bar 20
				g, c'
				g, g'
			}
			\alternative { { c, c'	<c, c'>8 r r4 } { c g \stemDown <c c'\fermata>2 \bar "|."} }
		}
	}
}

\header {
	title = "Speak Softly Love"
	subtitle = \markup{\small { (Love Theme from The Godfather)} }
	composer = "Nino Rota"
	
	date = "1972"
	style = "Soundtrack"
	%copyright = "Copyrights are bad"
	
	maintainer = "Nikos Kouremenos"
	maintainerEmail = "kourem at gmail DOT com"
	lastupdated = "2004/Dec/24"
	
	tagline="Typeset by Nikos Kouremenos in LilyPond for fun, you're not allowed to sell this copy"
}

#(set-global-staff-size 22)
\score {
	\context PianoStaff <<
		%#(set-accidental-style 'piano-cautionary)
		\context Staff = "up" <<
			\time 4/4
			\key c \minor
			\upper
		>>
		\context Staff = "down" <<
			\time 4/4
			\key c \minor
			\lower
		>>
	>>

	\layout { }
	\midi { \tempo 4 = 70 }
}
