st-johns-bulletins/resources/hymns/813-glory-be-to-the-father.ly
Chandler Swift 081646b353
Add initial working draft
At this point, there's still a lot of filler and FIXMEs, but we do have
a complete bulletin generating!
2025-07-23 00:09:57 -05:00

76 lines
1.7 KiB
Text

% from https://hymnary.org/hymn/SoPC1899/page/75
\version "2.24.4"
\header {
tagline = ##f
}
\language "english"
global = {
\key ef \major
\time 2/2
}
soprano = \relative ef' {
\global
ef4. ef8 ef4 ef8 ef | ef4 d r ef |
f2 bf | bf4 bf bf c | d2 c | bf r4 bf8 bf |
bf4 g c bf | bf af r af | af f bf af | af g r2 |
d'2 d4 d | ef2 \bar "||" ef,4( f) | g2 g4( f) | ef1 \bar "|."
}
alto = \relative bf {
\global
bf4. bf8 bf4 bf8 bf | bf4 bf r bf |
bf2 d | ef4 g f g | f2 f4( ef) | d2 r4 d8 d |
ef4 ef ef ef | d d r d | d d d f | f ef r2 |
f2 f4 f | ef2 bf4( c) | bf2 d | ef1
}
tenor = \relative g {
\global
\clef bass
g4. g8 g4 g8 g | af4 af r g |
f2 f | g4 bf bf bf | bf2 a | bf r4 bf8 af8 |
g4 ef af g | f f r f | f bf f bf | bf bf r2 |
bf2 bf4 bf | bf2 ef, | ef af | g1
}
bass = \relative ef {
\global
ef4. ef8 ef4 ef8 ef | f4 f r ef |
d2 bf | ef4 ef d ef | f2 f | bf, r4 bf8 bf |
ef4 ef ef ef | bf bf r bf | bf bf bf bf | ef ef r2 |
af2 af4 af | g2 g,4( af) | bf2 bf | ef1
}
verseOne = \lyricmode {
Glo -- ry be to the Fa -- ther,
and to the Son, and to the Ho -- ly Ghost;
As it was in the be -- gin -- ning, is now, and ev -- er shall be,
world with -- out end; A -- men, A -- men.
}
\score {
\new ChoirStaff <<
\new Staff \with { \consists Merge_rests_engraver } <<
\new Voice = "soprano" { \voiceOne \soprano }
\new Voice = "alto" { \voiceTwo \alto }
\new Lyrics \lyricsto soprano { \verseOne }
>>
\new Staff \with { \consists Merge_rests_engraver } <<
\clef bass
\new Voice = "tenor" { \voiceOne \tenor }
\new Voice = "bass" { \voiceTwo \bass }
>>
>>
\layout {
indent = 0
\context {
\Score
\omit BarNumber
}
}
}