\version "2.7.0"
\include "english.ly"

firstsoprano = {
	\clef treble
	\key g \minor
	\time 4/4
	g'4 fs'4 g'2\fermata \bar "|."
	\stopStaff s\breve \startStaff
}

firstbass = {
	\clef bass
	\key g \minor
	\time 4/4
	c8 a,8 d4 g,2\fermata \bar "|."
	\stopStaff s\breve \startStaff
}

figs = \figuremode {
	<5 6>4 <_+>4 <_>2 | 
}

secondsoprano = {
	\set Staff.printKeyCancellation = ##f
	\clef treble
	\key bf \major
	\time 4/4
	\once \override TextScript #'extra-offset = #'(-4.0 . 1.75)
	s1*0^\markup \bold \fontsize #2 {Wo ist mein Schäflein, das ich liebe}
	r4 bf'4 c''4 d''4 | %1
	ef''4 g'4 c''4 bf'4 | %2
	af'2 g'4 \bar ":" \noBreak ef''8( f''16 g''16) | %3
}

secondbass = {
	\set Staff.printKeyCancellation = ##f
	\clef bass
	\key bf \major
	\time 4/4
	r4 ef4 af4 g8 f8 | %1
	g4 c'8( bf8) af4 ef4 | %2
	f4 bf,4 ef4 \bar ":" \noBreak c4 | %3
}

\score {
	\new PianoStaff  <<
		\new Staff <<
			{\firstsoprano \secondsoprano}
		>>
		\new Staff <<
			{\firstbass \secondbass}
			\figures {\figs}
		>>
	>>
	\layout {
		indent = 0\mm
	}
}


