vault backup: 2025-12-11 07:44:40

This commit is contained in:
2025-12-11 07:44:40 -05:00
parent 84969eab26
commit 8fba906c54
2 changed files with 260 additions and 2 deletions
+139
View File
@@ -105,3 +105,142 @@ Then seven years more a-burning in hell
Down by the greenwood sidey, oh!
Down by the greenwood sidey
```
## Tablature
```lily
\version "2.25.22"
% this is a work in progress. see comments.
\paper { indent=0 }
\header {
title="The Cruel Mother"
instrument="5-String Banjo"
composer="Scarlett Sladek" % probably. I haven't found a similar version.
arranger="Publius"
}
tagline = ##f
mel = {
\time 4/4
\tempo 4 = 120
\sectionLabel "Verse 1"
fis4
<gis b,>8
b'8
gis4
gis8
b'8
fis4
fis8
b'8
fis4
gis8
b'8
| \break
\section
\sectionLabel "Refrain 1"
fis4
fis8
b'8
fis4
gis8
b'8
cis4
cis8
b'8
cis4
cis8
b'8
| \break
\section
\sectionLabel "Verse 2"
fis4
gis8
b'8
gis4
gis8
b'8
fis4
fis8
b'8
fis8( gis8)
fis8
b'8
| \break
\section
\sectionLabel "Refrain 2"
fis4
cis8
b'8
b
cis8
b'8
cis4
cis8
b'8
cis4
cis8
b'8
| \break
fis4
cis8
b'8
b
cis8
b'8
cis4
cis8
b'8
cis4
cis8
b'8
| \break
dis
fis,,
b'8
gis,,( fis,,)
fis,,
b'8
dis
cis8
\deadNote b'8
b
b
b'8
\section
}
lyr = \lyricmode {
There4 lived ___ a8 la-8 dy lived4 in4 York4
All4 8 a-8 lone4 and8 a-8 lone-4 8 ly oh!2
She4 fell2 in8 love8 with8 her8 own4 father's4 clark4
Down4 by8 the8 green-4 wood4 si-4 8 dey oh!2
Down4 by8 the8 green-4 wood4 si-2 dey2
}
\score {
<<
\new TabStaff = "one"
{
\set TabStaff.tablatureFormat = #fret-number-tablature-format-banjo
\set TabStaff.stringTunings = \stringTuning <d,,, b,, g, d g'> % confirm
\set Score.stringOneTopmost = ##f
\override Beam.concaveness = #10000
\clef moderntab
\numericTimeSignature
\stemDown
\tabFullNotation
\mel
}
\new Lyrics \lyr
>>
\layout { }
\midi { }
}
```