Compare commits

...

3 Commits

Author SHA1 Message Date
contrapunctus f50751fe48 Correct lyrics typo 2021-09-16 09:51:16 +05:30
contrapunctus a143daba77 Bar 10-12 - arrange guitar part 2021-09-16 09:51:08 +05:30
contrapunctus 4b7cf61ee2 Add project-level main file 2021-09-16 09:12:42 +05:30
3 changed files with 50 additions and 2 deletions

View File

@ -3,7 +3,7 @@ voiceLyrics = \lyricsto "voice" {
Give to me the life I love,
Let the lave go by me,
Give the jol -- ly heaven a -- bove,
And the by -- way night me.
And the by -- way nigh me.
Bed in the bush with stars to see,
Bread I dip in the ri -- ver_
There's the life for a man like me,

View File

@ -37,9 +37,17 @@ leftHand = \relative c, {
\barNumberCheck #1
\repeat unfold 4 { <e b'>4-. <fis b>-. <e b'>-. <fis b>-. | }
\repeat unfold 4 { <e b' e>4-. <fis b>-. <e b'>-. <fis b>-. | }
\repeat unfold 2 { <e b' e>4-. <fis b>-. <e b'>-. <fis b>-. | }
\barNumberCheck #7 % Give to me the life I love
\repeat unfold 2 { <e b' e>4-. <fis b>-. <e b'>-. <fis b>-. | }
<e b'>4-. <fis b>-. <e b'>-. <fis b>-. |
\barNumberCheck #10 % Give the jolly heaven above
<g d'>-. <a d>-. <g d'>-. <a d>-. |
<g d'>-. f'-. ees-. f-. |
bes,-. d-. bes-. d-. |
}
rightHand = \relative c' {
@ -52,10 +60,17 @@ rightHand = \relative c' {
\break
<e b g>1 |
q |
\barNumberCheck #7 % Give to me the life I love
q2 <b g e>4 <d a fis> |
<b g e>2 <b g>8-. <a fis>-. <g e>-. <a fis>-. |
<b g e>1 |
\barNumberCheck #10 % Give the jolly heaven above
<bes g>2 <d bes g>4 <f c a> |
<d bes g>2 bes8 a <g ees> a |
<d bes f>1 |
}
guitar = {

33
main.ly Executable file
View File

@ -0,0 +1,33 @@
\version "2.18.2"
\include "1 The Vagabond/common.ly"
\include "1 The Vagabond/music/voice.ly"
\include "1 The Vagabond/lyrics.ly"
\include "1 The Vagabond/lsr952.ly"
\include "1 The Vagabond/music/guitar.ly"
\header {
title = \markup \fontsize #2 "Songs of Travel"
composer = "Ralph Vaughan Williams"
poet = "Robert Louis Stevenson"
arranger = "arr. Kashish"
copyright = \copyright
}
\score {
<<
\new Staff << \new Voice = "voice" { \voiceMusic } >>
\new Lyrics \voiceLyrics
\new Staff << \new Voice { \guitar } >>
\new Dynamics { \guitarDynamics }
>>
\header {
piece = \markup \fontsize #3 "1. The Vagabond"
}
\layout {
\context {
\Staff \RemoveEmptyStaves
}
}
}