\version "2.12.2" #(set-default-paper-size "letter" 'landscape) #(define page-breaking ly:minimal-breaking) #(set-global-staff-size 20) \include "sacredHarpRepeats.ly" \header { title = \markup \bold \smallCaps { Loma Mar. 8,7. } arranger = \markup \bold \tiny "Leland Paul Kusmer, 2010" meter = \markup \bold \tiny "D Minor Anne Neufeld Rupp, 1970" } global = { \key d \minor \time 3/2 % \set shapeNoteStyles = #'#(la mi fa #f la fa #f la) \once \override Score.BreakAlignment #'break-align-orders = #(make-vector 3 '(left-edge clef key-signature time-signature staff-bar )) \override Staff.BarLine #'stencil = #with-shapenote-repeats } sopMusic = \relative c' { r1 d'4 a | c2 c d4 c | bes a2. a4 a | g2 a c4 a | g1 a4 c | bes2 g a4 bes | c d2. a4 bes | c2 a a4 a | a1 \bar "|:" \repeat volta 2 { a4 g | a( bes) c( d) c8 bes a4 | bes c2. a4 g | a( d) c( e) d c | d1 a4 d8 c | bes4( a) g2 a4 bes | c d2. a4 bes | c( d) e( d) c8 bes a4 | a1 \bar "|." } } altoMusic = \relative c' { r1 a4 f | g2 a bes4 a | bes a2. a4 f | g2 a g4 a | a1 a4 a | f2 g f4 g | a8 g f2. f4 f | g2 f f4 g | a1 \bar "|:" \repeat volta 2 { f4 e | f( g) a( bes) a a | f g2. a4 g | f( g) a( c) bes g | f1 f4 d | d( f) g2 f4 d | d8 e f2. a4 f | g2 a g4 a | a1 \bar "|." } } tenorMusic = \relative c'' { r1 d4 d | c2 a bes4 a | f d2. d'4 d | c2 d e4 d | c1 f4 f | d2 c a4 g | f d2. f4 f | g2 a f4 d | d1 \break \repeat volta 2 { \bar "|:" a'4 c | d2 e f4 e | d c2. a4 c | d2 a f'4 c | d1 f4 f | d2 c a4 g | f d2. f4 f | g2 a f4 d | d1 \bar "|." } } bassMusic = \relative c { r1 d4 d | e2 f2 g4 a | d, d2. d4 d | g2 f c4 d | a1 a4 a | d2 e f4 e | f a2. d,4 d | c2 d a4 a | d1 \bar "|:" \repeat volta 2 { a4 a | d2 a d4 c | bes a2. a4 a | d2 e f4 a | g1 a4 a | g2 e f4 g | d d2. d4 d | c2 d a4 a | d1 \bar "|." } } firstVerse = \lyricmode { \tiny \set stanza = "1. " Ho -- ly Spi -- rit, come with pow -- er, breath in -- to our ach -- ing night. We exp -- ect you this glad ho -- ur, wait -- ing for your strength and light. We are fear -- ful, we are ail -- ing, we are weak and self -- ish too. Break up -- on your con -- gre -- ga -- tion, give us vig -- or, life a -- new. } secondVerse = \lyricmode { \tiny \set stanza = "2. " Ho -- ly Spi -- rit, come with fire, \skip 2. burn us with your pre -- sence new. Let us as one migh -- ty cho -- ir sing our hymn of praise to you. Burn a -- way our was -- ted sad -- ness and en -- flame us with your love. Burst up -- on your con -- gre -- ga -- tion, give us glad -- ness from a -- bove. } thirdVerse = \lyricmode { \tiny \set stanza = "3. " Ho -- ly Spi -- rit, bring your mes -- sage, burn and breathe each word a -- new Deep in -- to our ti -- red liv -- ing till we strive your work to do. Teach us love and trust -- ing kind -- ness, lend our hands to those who hurt. Breathe up -- on your con -- gre -- ga -- tion, and ins -- pire us with your word. } \score { \new ChoirStaff << \new Staff = treble << \new Voice = "treble" { \global \sopMusic } \new Lyrics = "verseOne" {s1} >> \new Staff = alto << \clef bass \new Voice = "alto" { \global \altoMusic } \new Lyrics = "verseTwo" {s1} >> \new Staff = lead << \clef "treble" \new Voice = "tenor" { \global \tenorMusic } \new Lyrics = "verseThree" {s1} >> \new Staff = bass << \clef bass \new Voice = "bass" { \global \bassMusic } >> \context Lyrics = verseOne \lyricsto tenor \firstVerse \context Lyrics = verseTwo \lyricsto tenor \secondVerse \context Lyrics = verseThree \lyricsto tenor \thirdVerse >> \layout { indent = 0\cm \context { % a little smaller so lyrics % can be closer to the staff \Staff \override VerticalAxisGroup #'minimum-Y-extent = #'(-4 . 4) } \context { \Voice \override TextScript #'padding = #1 } \context { \Score \remove "Bar_number_engraver" } } }