vault backup: 2025-12-20 19:26:13

This commit is contained in:
2025-12-20 19:26:13 -05:00
parent 77a05f9293
commit fc1f0fa75e
2 changed files with 92 additions and 82 deletions
+9 -1
View File
@@ -1,13 +1,13 @@
--- ---
id: id:
aliases: [] aliases: []
title: Banjo Tablatures
tags: tags:
- authorship/original - authorship/original
- destiny/permanent - destiny/permanent
- status/incomplete - status/incomplete
- topic/hobbies/banjo - topic/hobbies/banjo
- type/encyclopedia - type/encyclopedia
title: Banjo Tablatures
--- ---
# Banjo Tablatures # Banjo Tablatures
@@ -65,6 +65,14 @@ Strum holding the first position,
then slide down the fretboard to the second. then slide down the fretboard to the second.
Indicated with a diagonal line between notes. Indicated with a diagonal line between notes.
```lily
\new TabStaff {
\relative c' {
d4 \glissando e\2
}
}
```
### Hammer-On and Pull-Off ### Hammer-On and Pull-Off
Hammer-on -- Strum holding the first position, Hammer-on -- Strum holding the first position,
+77 -75
View File
@@ -110,7 +110,6 @@ Down by the greenwood sidey
```lily ```lily
\version "2.25.22" \version "2.25.22"
% this is a work in progress. see comments.
\paper { indent=0 } \paper { indent=0 }
\header { \header {
title="The Cruel Mother" title="The Cruel Mother"
@@ -124,94 +123,94 @@ mel = {
\tempo 4 = 120 \tempo 4 = 120
\sectionLabel "Verse 1" \sectionLabel "Verse 1"
fis4 fis4\4
<gis b,>8 <gis\4 b\3>8
b'8 b'8\5
gis4 gis4\4
gis8 gis8\4
b'8 b'8\5
fis4 fis4\4
fis8 fis8\4
b'8 b'8\5
fis4 fis4\4
gis8 gis8\4
b'8 b'8\5
| \break | \break
\section \section
\sectionLabel "Refrain 1" \sectionLabel "Refrain 1"
fis4 fis4\4
fis8 fis8\4
b'8 b'8\5
fis4 fis4\4
gis8 gis8\4
b'8 b'8\5
cis4 cis'4\3
cis8 cis'8\3
b'8 b'8\5
cis4 cis'4\3
cis8 cis'8\3
b'8 b'8\5
| \break | \break
\section \section
\sectionLabel "Verse 2" \sectionLabel "Verse 2"
fis4 fis4\4
gis8 gis8\4
b'8 b'8\5
gis4 gis4\4
gis8 gis8\4
b'8 b'8\5
fis4 fis4\4
fis8 fis8\4
b'8 b'8\5
fis8( gis8) fis8\4( gis8\4)
fis8 fis8\4
b'8 b'8\5
| \break | \break
\section \section
\sectionLabel "Refrain 2" \sectionLabel "Refrain 2"
fis4 fis4\4
cis8 cis'8\3
b'8 b'8\5
b b4\3
cis8 cis'8\3
b'8 b'8\5
cis4 cis'4\3
cis8 cis'8\3
b'8 b'8\5
cis4 cis'4\3
cis8 cis'8\3
b'8 b'8\5
| \break | \break
fis4 fis4\4
cis8 cis'8\3
b'8 b'8\5
b b4\3
cis8 cis'8\3
b'8 b'8\5
cis4 cis'4\3
cis8 cis'8\3
b'8 b'8\5
cis4 cis'4\3
cis8 cis'8\3
b'8 b'8\5
| \break | \break
dis dis'4\2
fis,, fis'8\1
b'8 b'8\5
gis,,( fis,,) gis'8\1( fis'8\1)
fis,, fis'8\1
b'8 b'8\5
dis dis'4\2
cis8 cis'8\3
\deadNote b'8 \deadNote b'8\5
b b4\3
b b8\3
b'8 b'8\5
\section \section
} }
@@ -228,8 +227,10 @@ lyr = \lyricmode {
\new TabStaff = "one" \new TabStaff = "one"
{ {
\set TabStaff.tablatureFormat = #fret-number-tablature-format-banjo \set TabStaff.tablatureFormat = #fret-number-tablature-format-banjo
\set TabStaff.stringTunings = \stringTuning <d,,, b,, g, d g'> % confirm \set TabStaff.stringTunings = \stringTuning <g' d g b d'> % tuning unknown.
\set Score.stringOneTopmost = ##f % \set TabStaff.stringTunings = #banjo-open-g-tuning % equivalent to \stringTuning <g' d g b d'>
% capo'd to fret 4, unsure how to represent this in lilypond
% \set Score.stringOneTopmost = ##f
\override Beam.concaveness = #10000 \override Beam.concaveness = #10000
\clef moderntab \clef moderntab
\numericTimeSignature \numericTimeSignature
@@ -243,4 +244,5 @@ lyr = \lyricmode {
\midi { } \midi { }
} }
``` ```