User:WhiteTimberwolf/GoodMorningToAll.ly

From Wikimedia Commons, the free media repository
Jump to navigation Jump to search

This is the GNU LilyPond source for GoodMorningToAll.svg.

\version "2.13.18"

melody = \relative c' {
	\clef treble
	\key g \major
	\time 3/4

	\partial 4 d4^\markup { \italic Brightly. }
	e d g
	fis2 d4
	e d a'
	g2 d4
	d' b g
	fis e c'
	b g a
	g2\fermata
	\bar "|."
}

lyrs = \lyricmode { Good morn- ing to you, Good morn- ing to you, Good morn- ing dear chil- dren, Good morn- ing to all. }

accomp = \relative c' {
	\clef treble
	\key g \major
	\time 3/4

	\partial 4 d4
	<b e> d <b g'>
	<c fis>2 d4
	<c e> d <c a'>
	<b g'>2 <b d>4

	<<
	\new Voice {
		\voiceOne
		d'4 b <g d>
	}
	\new Voice {
		\voiceTwo
		<d g>2
	}
	>>

	<d fis>4 <c e> <c c'>

	<<
	\new Voice {
		\voiceOne
		b' g <c, a'>
	}
	\new Voice \relative c' {
		\voiceTwo
		d2
	}
	>>

	<b g'>2\fermata
}

accompbass = \relative c {
	\clef bass
	\key g \major
	\time 3/4

	\partial 4 r4

	<<
	\new Voice {
		\voiceOne
		d2 d4
		d2 d4
	}
	\new Voice {
		\voiceTwo
		g,2.
		a2.
	}
	>>
	<d, d'>2 <d d'>4
	<g d'>2 <g g'>4
	<b g'>2 q4
	<c g'>2 <a e' a>4
	d2 <d fis>4
	\stemDown
	<g, d' g>2\fermata
}

\book {
	\header {
		title = "GOOD-MORNING TO ALL."
		subsubtitle = "To be sung standing."
	}

	\score {
		<<
			\new Staff { \autoBeamOff \melody }
			\addlyrics { \lyrs }
			\new GrandStaff <<
				\new Staff { \accomp }
				\new Staff { \accompbass }
			>>
		>>

		\layout {
			\context {
				\Score
				\remove "Bar_number_engraver"
			}
		}
	}
}