st-johns-bulletins/resources/hymns/815-praise-god-from-whom-all-blessings-flow.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

87 lines
1.6 KiB
Text

% \begin{lilypond}[staffsize=16]
% 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 g' {
\clef treble
\key g \major
\time 6/4
g2 g4 fs e d | g2 a b |
b b4 b a g | c2 b a |
g a4 b a g | e2 fs g |
d' b4 g a c | b2 a g2 \fine
}
alto = \relative d' {
\clef treble
\key g \major
\time 6/4
d2 d4 d b b | b2 d d |
d d4 d d b | e2 d d |
d d4 d d b | c2 c d |
b b4 e e c | d( g~ g) fs g2 \fine
}
tenor = \relative b {
\clef bass
\key g \major
\time 6/4
b2 b4 a g fs | g2 fs g |
g g4 g fs g | g2 g fs |
b fs4 g fs g | g2 a b |
fs g4 b c e | d2~ d4. c8 b2 \fine
}
bass = \relative g, {
\clef bass
\key g \major
\time 6/4
g2 g'4 d e b | e2 d g, |
g g4 g' d e | c2 g d' |
g d4 g d e | c2 a g |
b e4. d8 c b a4 | b4.( c8) d2 g, \fine
}
verseOne = \lyricmode {
Praise God, from whom all bles -- sings flow;
Praise Him, all crea -- tures here be -- low;
Praise Him a -- bove, ye heav'n -- ly host;
Praise Fa -- ther, Son, and Ho -- ly Ghost.
}
\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
}
}
}
% \end{lilypond}