summaryrefslogtreecommitdiff
path: root/02-song2/instr/guitar.ly
diff options
context:
space:
mode:
authorrekado <rekado@elephly.net>2016-06-04 22:16:38 +0200
committerrekado <rekado@elephly.net>2016-06-04 22:16:38 +0200
commitec28895e0b210973732d75c4121da1472fca5e76 (patch)
treec2bf8a3a29e4514dbf5aad811881d8d18aae5325 /02-song2/instr/guitar.ly
parent8a6a22c3a63c29fb4ddfeeff2d51606aeb67bc0c (diff)
song2: Add guitar part.
Diffstat (limited to '02-song2/instr/guitar.ly')
-rw-r--r--02-song2/instr/guitar.ly33
1 files changed, 33 insertions, 0 deletions
diff --git a/02-song2/instr/guitar.ly b/02-song2/instr/guitar.ly
new file mode 100644
index 0000000..c5bb6dc
--- /dev/null
+++ b/02-song2/instr/guitar.ly
@@ -0,0 +1,33 @@
+\version "2.19.27"
+
+\header {
+ title = "Song 2"
+ subtitle = "Acoustic Guitar"
+ composer = "The very pretentious elephlies"
+ copyright = \markup { \char ##x00A9 "2002—2016 Ricardo Wurmus" }
+}
+
+\include "../settings.ly"
+\include "parts/guitar.ly"
+
+\score {
+ \new TabStaff = "acoustic guitar"
+ \with {
+ stringTunings = #guitar-tuning
+ \RemoveEmptyStaves
+ \tabFullNotation
+ } {
+ \tabChordRepeats
+ \compressMMRests
+ \guitar
+ }
+
+ \layout {
+ indent = #0
+ short-indent = #0
+ \context {
+ \Score
+ \numericTimeSignature
+ }
+ }
+}