From dae8d8a33997b0ebe7a61d924a91874b0719dba1 Mon Sep 17 00:00:00 2001 From: Leni Aniva Date: Mon, 16 Oct 2023 21:09:01 -0700 Subject: [PATCH] score: I Vow To Thee, My Country --- i-vow-to-thee-my-country.ly | 92 +++++++++++++++++++++++++++++++++++++ 1 file changed, 92 insertions(+) create mode 100644 i-vow-to-thee-my-country.ly diff --git a/i-vow-to-thee-my-country.ly b/i-vow-to-thee-my-country.ly new file mode 100644 index 0000000..f4b7dec --- /dev/null +++ b/i-vow-to-thee-my-country.ly @@ -0,0 +1,92 @@ +\version "2.24.0" +\language "english" +\header { + title = "I Vow to Thee, My Country" + composer = "Gustav Holst" + poet = "Sir Cecil Spring Rice" +} + +violin = \relative { \repeat volta 2 { + \tempo 4 = 100 + \numericTimeSignature + \time 3/4 + \override Accidental.hide-tied-accidental-after-break = ##t + \key c \major + + r2 e'8( g) | a4. c8 b8. g16 | + c8 d c4 b | a8( b) a4 g | + e2 e8( g) | a4. c8 b8. g16 | + c8(d) e4 e | e8( d) c4 d | + c2 g8( e) | d4. d8 c e | + d4(g) g8( e) | d4. d8 e g | + a2 a8( b) | c8. c16 b4 a | + g4 c4 e, | d8 c d4 e | + g2 e8( g) | a4. c8 b8.(g16)| + c8(d c4) b | a8 b a4 g | + e2 e8 g | a4. c8 b8. g16 | + c8 d e4 e | e8 d c4 d | + c2 r4 | r2 r4 | +}} + +first = \lyricmode { + I vow to thee my + co -- un -- try all earthly things a -- + bove, En -- tire and whole and + per -- fect the service of my + love. The love that asks no + questions, the love that stands the + test. That lays up -- on the + al -- tar the de -- ar -- est and + best; The love that never + falters, the love that pays the + price. Th -- e love that makes un -- + da -- un -- ted the fin -- al sa -- cri -- + fice. +} +second = \lyricmode { + And there -- 's ano -- ther + co -- un -- try I've heard-of long a -- + go. Most dear to them that + love her, most great-to them that + know. We may not count her + armies, we may not see her + king. Her for -- tress is a + faithful heart her pride is su -- ffer -- + ing. And soul by soul silently + her shi -- ning bounds in -- crease. And + her ways are ways of gen -- tle -- ness, and all her paths are peace. +} + +\score{ + \midi { + \context { + \Score + midiChannelMapping = #'instrument + } + } + \layout { + \context { + \Score + } + } + << + \new Staff \with { + instrumentName = "Violin" + shortInstrumentName = "V." + midiInstrument = "violin" + } << + \new Voice = "violin" { + \violin + } + >> + \new Lyrics \lyricsto "violin" { + << + \first + \new Lyrics { + \set associatedVoice = "violin" + \second + } + >> + } + >> +}