﻿\include "deutsch.ly" 

#(set-default-paper-size "a4")
#(set-global-staff-size 21) 
% schaltet Notations-Editorlink-Funktion aus
#(ly:set-option 'point-and-click #f)


\version "2.10" 

global = { \key a \major \time 4/4 } 

% \noBreak

SopNote = \relative c' 
	{ 
	#(override-auto-beam-setting '(end * * * *) 2 8)
	#(override-auto-beam-setting '(end * * * *) 6 8)
	\partial 4
	e4
	a8( h) cis( d) cis( h) a( gis)
	fis2 fis4 fis
	e a a gis
	a2. e4

	a8( h) cis( d) cis( h) a( gis)
	fis2 fis4 fis
	e a a gis
	a2. cis4

	cis cis cis a
	h2 h4 h
	a8(h) cis( d) cis( h) a( gis16 fis)
	gis2. e4

	a8( h) cis( d) cis( h) a( gis)
	fis2 fis4 fis
	e a a gis
	a2.
	\bar "|."
	} 

AltNote = \relative c' 
	{ 
	\partial 4
	cis4
	cis e e cis
	d2 d4 d
	cis fis e4. e8
	cis2. cis4
	cis e e cis 
	d2 d4 d
	cis fis e4. e8
	cis2. a'4
	a a a e
	gis2 gis4 gis
	fis4. fis8 fis4 fis
	eis2. cis4
	cis e e cis
	d2 d4 d
	cis fis e4. e8
	cis2.	 
	} 

TenNote = \relative c' 
	{ 
	a4 
	a4. a8 a4 a
	a2 a4. h8
	cis4 d h h
	a2. a4
	a4. a8 a4 a
	a2 a4. h8
	cis4 d h h
	a2. e'4
	e e e cis
	e2 e4 e
	cis4. cis8 cis4 cis
	cis2. gis4
	a4. a8 a4 a
	a2 a4. h8
	cis4 d h h
	a2.	
	} 

BasNote = \relative c 
	{ 
	#(override-auto-beam-setting '(end * * * *) 2 8)
	#(override-auto-beam-setting '(end * * * *) 6 8)
	\partial 4
	a4
	a a a a
	d2 d8( e) fis( gis)
	a4 d, e e
	a,2. a4
	a a a a
	d2 d8( e) fis( gis)
	a4 d, e e
	a,2. a4
	a'4. a8 a4 a
	e2 e4 e
	fis4. fis8 fis4 fis
	cis2. cis4
	a a a a
	d2 d8( e) fis( gis)
	a4 d, e e
	a,2.	
	} 


TxtLnA = \lyricmode {
	\set stanza = "1. " 
	Mit Lieb bin ich um -- fan -- gen,
	Herz -- al -- ler -- lieb -- ste mein;
	nach dir steht mein Ver -- lan -- gen,
	könnt's o -- der möcht's ge -- sein.
	Könnt ich dein Gunst er -- wer -- ben,
	käm ich aus gro -- ßer Not,
	viel lie -- ber wollt ich ster -- ben
	und wünscht mir selbst den Tod. 

} 

TxtLnB = \lyricmode {
	\set stanza = "2. " 
	Wie soll ich von dir las -- sen,
	es kost mir mei -- nen Leib,
	da -- zu zwingt mich ohn -- ma -- ßen,
	daß ich nit von dir scheid.
	Dir hab' ich mich er -- ge -- ben
	in rech -- ter Ste -- tig -- keit,
	die -- weil ich hab' das Le -- ben,
	Herz -- lieb, nit von mir scheid!
} 


%--------------------
% Maintainer: Sven Kaiser / e-mail: noten(at)oemsel.de
% General layout: One staff for soprano/alto and one staff for tenor/bass with two text stanzas between the staffs
% mit_lieb_bin_ich_umfangen_sa-tb.ly
% 2009-10-24


\header {
 title = "Mit Lieb bin ich umfangen"
 composer = "Johann Steuerlein (1546-1613)"
 poet = "Aus Hainhofers Lautenbüchern, 1603"
 tagline = \markup { \tiny \italic"Rev. 1  -  Notensatzprogramm: http://lilypond.org   -   Notendownload: www.oemsel.de/noten" }
}  

% Defintion Formate Seitensatz
\paper{
  top-margin = 1\cm
  left-margin = 2\cm
  line-width = 18\cm
  after-title-space = 2.5\cm
  bottom-margin = 0\cm
  ragged-bottom = ##t
  between-system-space = 2.2\cm
  print-page-number = ##f
}


\score {
	\new ChoirStaff << 

		\new Staff = "SopAltStf" << 
			\clef "G" 
			\set Staff.instrumentName = \markup {\center-column {"Sopran " \line {"Alt"}}}
			\new Voice = "SopVce" { \voiceOne << 
				\autoBeamOn 
				{ \global \SopNote } 
				>>
			}
			\new Voice = "AltVce" { \voiceTwo << 
				\autoBeamOff 
				{ \global \AltNote } 
				>>
			} 
		>> 

		\new Lyrics = CenTxtLnA 
		\new Lyrics = CenTxtLnB 
	
		\new Staff = TenBasStf << 
			\clef "F" 
			\set Staff.instrumentName = \markup {\center-column {"Tenor " \line {"Bass"}}}
			\new Voice = "TenVce" { \voiceOne << 
				\autoBeamOff 
				{ \global \TenNote } 
				>>
			} 
			\new Voice = "BasVce" { \voiceTwo << 
				\autoBeamOn 
				{ \global \BasNote } 
				>>
			} 
		>> 
	
	\context Lyrics = CenTxtLnA \lyricsto SopVce \TxtLnA 
	\context Lyrics = CenTxtLnB \lyricsto SopVce \TxtLnB 
	
	>> 
   	
   	\midi { \context { \Score tempoWholesPerMinute = #(ly:make-moment 240 8) } }

	\layout { \context { \Score \remove "Bar_number_engraver" } }
}
