\version "2.6.0"

global = {
	\clef treble
	\key e \minor
	\time 6/8
}

soprano = \relative c'' {
	\set Staff.midiInstrument = "violin"
	\clef "treble^8"
	\repeat volta 2 {
		\partial 8 e8
		g8. a16 b8 b8.( cis16) dis8 |
		e4 b8 b4 e,8 |
		g8. a16 b8 fis4 a8 
		\partial 8*5 g8 fis4 e4\fermata
	}
	\repeat volta 2 {
		\partial 8 e8
		g8. g16 g8 a4 a8 |
		b8 cis4 d4 c8 |
		b8. a16 b8 b8. a16 b8 
		\partial 8*5 gis8 a4 gis4\fermata
	}
}

alto = \relative c' {
	\set Staff.midiInstrument = "viola"
%{ 	\repeat volta 2 {
		\partial 8 e8
		b'4 b8 a4 a8 |
		b8.( a16) g8 fis4 e8 |
		b'8. c16 b8 a4 c8 
		\partial 8*5 b4. e,4\fermata
	}
 %}
	\partial 8 e8
	b'4 b8 a4 a8 |
	b8.( a16) g8 fis4 e8 |
	b'8. c16 b8 a4 c8 
	\partial 8*5 b4. e,4\fermata
	\partial 8 e8
	b'4 b8 a4 a8 |
	b8.( a16) g8 fis4 e8 |
	b'8. c16 b8 a4 c8 
	\partial 8*5 b4. e,4\fermata
 	\partial 8 r8
	r2. |
	r4. a4. |
	e4 e8 fis4. |
	e4. b' |
	e,4 e8 fis4. |
	e a |
	e4 e8 fis4. 
	\partial 8*5 e2~ e8\fermata
}

fakealto = \relative c' {
	\set Staff.midiInstrument = "viola"
 	\repeat volta 2 {
		\partial 8 e8
		b'4 b8 a4 a8 |
		b8.( a16) g8 fis4 e8 |
		b'8. c16 b8 a4 c8 
		\partial 8*5 b4. e,4\fermata
	}
 	\partial 8 r8
	r2. |
	r4. a4. |
	e4 e8 fis4. |
	%e4. b |
	%e4 e8 fis4. |
	%e a |
	%e4 e8 fis4. 
	\partial 8*5 e2~ e8\fermata
}

tenor = \relative c {
	\clef bass
	\set Staff.midiInstrument = "cello"
	\repeat volta 2 {
		\partial 8 r8
		e8. fis16 g8 fis8. g16 a8 |
		g8. fis16 e8 dis4 g8 |
		g4 g8 a4 a8 
		\partial 8*5 b4. b4\fermata
	}
	\repeat volta 2 {
		\partial 8 r8
		b8. cis16 b8 a8. g16 fis8 |
		g8. fis16 e8 d8. e16 fis8 |
		g4 e8 dis8.( cis16) dis8 
		\partial 8*5 e4. e4\fermata
	}
}

basso = \relative c {
	\clef bass
	\set Staff.midiInstrument = "contrabass"
	\repeat volta 2 {
		\partial 8 e8
		e4 b8 d8. e16 fis8 |
		e4 e8 b4 e8 |
		e4 b8 d4 a8
		\partial 8*5 e'8 b4 e4\fermata
	}
	\repeat volta 2 {
		\partial 8 e8
		e4 b8 d8. d16 d8 |
		g,8 a4 d4 d8 |
		e8. e16 e8 b4 b8
		\partial 8*5 cis8 a4 e'4\fermata
	}
}

textSoprano = \lyricmode {
	Now foot it as I __ do, Tom boy Tom,
	now foot it as I do swi -- then, ah!
	And hick thou must trick it all a -- lone,
	Sir Ro -- bin come lea -- ping in bet -- ween, ah!
}

textAlto = \lyricmode {
	The crampe is in my purse __ full sore,
	no mo -- ney will bide there in, ah!
	And if I had some solve __ there -- fore,
	oh, light -- ly then would I sing, ah!
	%(Pause)
	Hey ho, the crampe, ah!
	Hey ho, the crampe, ah!
	Hey ho, the crampe, ah!
}

textTenor = \lyricmode {
	Ro -- bin Hood, Ro -- bin Hood, said Litt -- le John,
	come dance be -- fore the Queen, ah!
	In a red pet -- ti -- coat and a green ja -- cket,
	a white hose and __ a greene, ah!
}

textBasso = \lyricmode {
	Sing af -- ter fel -- lows, as you hear me,
	a toy that sel -- dom is seene, ah!
	Three coun -- try dan -- ces in one to be,
	a pret -- ty con -- ceit, as I weene, ah!
}

% Papier-Ausgabe
\book {
	\header{
		title = "A Round of Three Country Dances in One"
		composer = "Thomas Ravenscroft (ca.1592–1633)"
	%	instrument = "2 voc + git"
		maintainer = "Henning Hraban Ramm"
		maintainerWeb = "http://angerweit.tikon.ch/lieder/"
		lastupdated = "2005-08-07"
	}
	% Sopran, Tenor und Bass (mit Wiederholungen)
	\score {
		\header { piece = "Basso, Tenor & Soprano" }
		\context ChoirStaff <<
			\context Staff = one <<
				\context Voice = sopranos { \global \soprano }
				\lyricsto sopranos \new Lyrics \textSoprano
			>>
			\context Staff = two <<
				\context Voice = altos { \global \fakealto }
			>>
			\context Staff = three <<
				\context Voice = tenors { \global \tenor }
				\lyricsto tenors \new Lyrics \textTenor
			>>
			\context Staff = four <<
				\context Voice = bassos { \global \basso }
				\lyricsto bassos \new Lyrics \textBasso
			>>
		>>
		\layout { 
			indent = 0\cm
			raggedbottom = ##t
		}
	}
	% Alt (durchkomponiert)
	\score {
		\header { piece = "Alto" }
		\unfoldRepeats \context ChoirStaff <<
			\context Staff = two <<
				\context Voice = altos { \global \alto }
				\lyricsto altos \new Lyrics \textAlto
			>>
			\context Staff = four <<
				\context Voice = bassos { \global \basso }
				\lyricsto bassos \new Lyrics { \textBasso \textBasso }
			>>
		>>
		\layout { 
			indent = 0\cm
		}
	}
%{ 	% MIDI
	\score { \unfoldRepeats {
		\context Staff = "One" <<
			\global
			\context Voice = "Sopran" \soprano
			
			\context Voice = "Tenor" \tenor
			\context Voice = "Bass" \basso
		>>
		\context Staff = "Two" <<
			\global
			\context Voice = "Alt" \alto
		>>
		}
		\midi{ \tempo 4=80 }
	}
 %}}


%%% Local Variables:
%%% coding: utf-8
%%% End:

