Compare commits

...

2 Commits

Author SHA1 Message Date
contrapunctus 9c469697ce Move copyright text into project-common.ly 2021-09-16 12:23:22 +05:30
contrapunctus a299edf480 Add fingerings 2021-09-16 12:22:47 +05:30
5 changed files with 30 additions and 23 deletions

View File

@ -4,17 +4,3 @@ common = {
\time 4/4
\key e \minor
}
copyright = \markup
\center-column {
\smaller {
"The author of this arrangement, contrapunctus/Kashish (xmpp:contrapunctus@jabjab.de), would like to release it into the"
\raise #1
\concat {
\bold "public domain "
"using the Creative Commons CC0 License - "
\with-url #"http://creativecommons.org/publicdomain/zero/1.0/"
{http://creativecommons.org/publicdomain/zero/1.0/}
}
}
}

View File

@ -10,6 +10,7 @@ pos =
)
posI = \markup \small \bold "I"
posII = \markup \small \bold "II"
posIII = \markup \small \bold "III"
posIV = \markup \small \bold "IV"
posVI = \markup \small \bold "VI"
@ -34,14 +35,16 @@ guitarDynamics = {
}
leftHand = \relative c, {
\set fingeringOrientations = #'(left)
\barNumberCheck #1
\repeat unfold 4 { <e b'>4-. <fis b>-. <e b'>-. <fis b>-. | }
<e b'>4-.^\posII <fis b>-. <e b'>-. <fis b>-. |
\repeat unfold 3 { <e b'>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>-. |
<e b'-2>4-. <fis b>-. <e b'>-. <fis b>-. |
\barNumberCheck #10 % Give the jolly heaven above
<g d'>-. <a d>-. <g d'>-. <a d>-. |
@ -51,25 +54,26 @@ leftHand = \relative c, {
}
rightHand = \relative c' {
\set fingeringOrientations = #'(left)
\barNumberCheck #1
r2 \tuplet 3/2 { e4-. g8-. } \tuplet 3/2 { b4-. b8-. } |
b2 r |
r \tuplet 3/2 { e,,4-. g8-. } \tuplet 3/2 { b4-. b8-. } |
b2.\( <d a fis>4\) |
b2.\( <d a fis>4^\posII \) |
\break
<e b g>1 |
<e b g>1^\posI |
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 |
q2 <b g e>4 <d a fis>^\posII |
<b g e>2 g8-.^\posII fis-. e-. fis-. |
<b g e-3>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 |
<d bes f>1^\posIII |
}

View File

@ -1,9 +1,11 @@
\version "2.18.2"
\include "lsr952.ly"
\include "project-common.ly"
\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 {

15
project-common.ly Executable file
View File

@ -0,0 +1,15 @@
\version "2.18.2"
copyright = \markup
\center-column {
\smaller {
"The author of this arrangement, contrapunctus/Kashish (xmpp:contrapunctus@jabjab.de), would like to release it into the"
\raise #1
\concat {
\bold "public domain "
"using the Creative Commons CC0 License - "
\with-url #"http://creativecommons.org/publicdomain/zero/1.0/"
{http://creativecommons.org/publicdomain/zero/1.0/}
}
}
}