Opus/2017.11.14-TheresAWideness-TubaPed/score/theres_a_wideness.ly
2026-07-23 22:11:27 -07:00

166 lines
3.0 KiB
Plaintext
Executable File

\version "2.18.2"
\include "november2.ly"
date = #(strftime "%Y %b %d" (localtime (current-time)))
\header {
title = "There's a Wideness To God's Mercy"
composer = "William Zeitler"
copyright = \markup { "Copyright " \char ##x00A9 " 2017 William Zeitler" }
tagline = ""
}
global = {
\accidentalStyle default
\novemberOn
}
\paper {
print-page-number = ##t
%print-first-page-number = ##t
oddHeaderMarkup = \markup {
\fill-line {
\on-the-fly #not-first-page {
\concat { \fromproperty #'header:title " - " \fromproperty #'page:page-number-string }
}
}
}
evenHeaderMarkup = \oddHeaderMarkup
oddFooterMarkup = \markup {
\fill-line {
\null
\on-the-fly #first-page {
\fromproperty #'header:copyright
}
% \on-the-fly #not-first-page {
% \null
% }
\tiny \concat { \teeny "Revision: " \date }
}
}
evenFooterMarkup = \oddFooterMarkup
}
tuba = \relative c {
\clef bass
\key c \major
c4 b8 a g4 c
d c8 d e4 c\breathe
f e8 d e4 d8 c
b c d b c2\fermata
c4 b8 a g4 c
d c8 d e4 c\breathe
f e8 d e4 d8 c
b c d b c2\fermata
c4 d8 e f4 e
d cis d d\breathe
d e8 f g4 c,
d c8 b a4 g\fermata
c4 b8 a g4 c
d c8 d e4 c\breathe
f e8 d e4 d8 c
b c d b c2\fermata
\bar "||"
c4 b8 a g4 c
d c8 d e4 c\breathe
f e8 d e4 d8 c
b c d b c2\fermata
c4 b8 a g4 c
d c8 d e4 c\breathe
f e8 d e4 d8 c
b c d b c2\fermata
c4 d8 e f4 e
d cis d d\breathe
d e8 f g4 c,
d c8 b a4 g\fermata
c4 b8 a g4 c
d c8 d e4 c\breathe
f e8 d e4 d8 c
b c d b c2\fermata
\bar "||"
c1
c1\fermata
\bar "|."
}
pedal = \relative c {
\clef bass
\key c \major
c,4 d e a
f g c, e
d g e f
g f e2\fermata
a4 g8 f e4 a
f g gis a
a g8 f g4 f8 e
d4 g c,2\fermata
f4 e d g
a g f8 e d c'
b a g f e4 a
f e8 f fis4 g\fermata
c,4 d e a
f g e a
d, g e f
g g c,2\fermata
\bar "||"
<< g''1 \\ c,,1 >>
<< g''1 \\ { g,2 c, } >>
<< { a''2 g } \\ { d,2 e4 f } >>
<< { f'2 e\fermata } \\ { g, c, } >>
<< { e'4 f g2 } \\ { a,4 g8 f e2 } >>
<< { a'4 g8 f e2 } \\ { f,4 g gis a } >>
<< { a'4 b c g } \\ { f, g e2 } >>
<< { g'1\fermata } \\ { d,2 c\fermata } >>
<< { a''4 bes a g } \\ { f, e d g } >>
<< { f' e f8 g a4 } \\ { a,2 d, } >>
<< { b''2 c } \\ { g,4 f e2 } >>
<< { a'4 g a d,\fermata } \\ { fis,4 e fis g } >>
<< g'1 \\ c,,1 >>
<< g''1 \\ { g,2 c, } >>
<< { a''2 g } \\ { d,2 e4 f } >>
<< { f'2 e\fermata } \\ { g, a } >>
<< { <f' a>1 } \\ { f, } >>
<< { <e'\fermata g>1 } \\ { c, } >>
\bar "|."
}
\score {
<<
\new Staff \with {
instrumentName = #"Tuba"
} \tuba
\new Staff \with {
instrumentName = \markup {
\column { "Organ"
\line { "Pedals" }
}
} } \pedal
>>
\layout{}
}