-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathliberty.ly
45 lines (40 loc) · 2.41 KB
/
liberty.ly
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
\version "2.22.1"
\paper { indent=0 }
\header {
title="Liberty"
composer="Traditional (arr. J. Teitelbaum)"
piece="aDADE"
}
music ={
\time 4/4
\set Timing.beamExceptions = #'()
\set Timing.beatStructure = 1,1,1,1
\repeat volta 2 {
e''4\1 g'4\3 e''4\1 g'4\3 e''8\1 d''8\1 e''8\1 g''8\5 e''8\1 d''8\1 c''4\2 f''4\1 a'4\3 f''4\1 a'4\3 f''8\1 e''8\2 f''8\1 g''8\5 f''8\1 e''8\2 d''8\1 g''8\5 e''4\1 g'4\3 e''4\1 g'4\3 e''8\1 d''8\1 e''8\1 g''8\5 e''8\1 d''8\1 c''4\2 f''8\1 e''8\1 g''8\5 d''8\1 b'8\3 g'8\3 a'8\3 b'8\3 c''4\2 g''8\5 e''8\1 c''4\2 < g''\5 e''\1 >4
}
\repeat volta 2 {
g'4\3 g'8\3 a'8\3 g'8\3 c''8\2 e'4\4 c'8\4 e'8\4 g'8\3 c''8\3 e''4\1 c''4\2 g'4\3 g'8\3 a'8\3 g'8\3 c''8\2 e'4\4 d'8\4 c'8\4 d'8\4 e'8\4 d'8\4 e'8\4 f'4\4 g'4\3 g'8\3 a'8\3 g'8\3 c''8\2 e'4\4 c'8\4 e'8\4 g'8\3 c''8\3 e''4\1 c''4\2 f''8\1 e''8\1 g''8\5 d''8\1 b'8\3 g'8\3 a'8\3 b'8\3 c''4\2 g''8\5 e''8\1 c''4\2 < g''\5 e''\1 >4
}
}
\new StaffGroup <<
\new Staff \with {
\omit StringNumber
}
{
\key d \major
\numericTimeSignature
{\transpose c d {\music}}
}
\new TabStaff \with {
tablatureFormat = #fret-number-tablature-format-banjo
stringTunings = \stringTuning <a'' d' a' d'' e''>
}
{
{
\clef moderntab
\numericTimeSignature
\tabFullNotation
{\transpose c d {\music}}
}
}
>>