summaryrefslogtreecommitdiff
path: root/01-song1/parts
diff options
context:
space:
mode:
authorrekado <rekado@elephly.net>2016-06-05 12:37:40 +0200
committerrekado <rekado@elephly.net>2016-06-05 12:37:40 +0200
commit9c26140f3ac2f21f632141f1097db7430da036ff (patch)
tree8bde01ce00284750b83b3be660d1f7621fcaccfb /01-song1/parts
parent9ae92088022e500a4f681257935814ca10d76323 (diff)
song1: Add sheets for separate parts.
Diffstat (limited to '01-song1/parts')
-rw-r--r--01-song1/parts/bass.ly25
-rw-r--r--01-song1/parts/keys.ly29
-rw-r--r--01-song1/parts/stick.ly29
3 files changed, 83 insertions, 0 deletions
diff --git a/01-song1/parts/bass.ly b/01-song1/parts/bass.ly
new file mode 100644
index 0000000..c11763b
--- /dev/null
+++ b/01-song1/parts/bass.ly
@@ -0,0 +1,25 @@
+\version "2.19.27"
+
+\header {
+ title = "Song 1"
+ subtitle = "Bass"
+ composer = "The very pretentious elephlies"
+ copyright = \markup { \char ##x00A9 "2002—2016 Ricardo Wurmus" }
+}
+
+\include "../../settings.ly"
+\include "../music/common.ly"
+\include "../music/bass.ly"
+
+\score {
+ \compressMMRests { \bass }
+
+ \layout {
+ indent = #0
+ short-indent = #0
+ \context {
+ \Score
+ \numericTimeSignature
+ }
+ }
+}
diff --git a/01-song1/parts/keys.ly b/01-song1/parts/keys.ly
new file mode 100644
index 0000000..4770cfc
--- /dev/null
+++ b/01-song1/parts/keys.ly
@@ -0,0 +1,29 @@
+\version "2.19.27"
+
+\header {
+ title = "Song 1"
+ subtitle = "Keyboard"
+ composer = "The very pretentious elephlies"
+ copyright = \markup { \char ##x00A9 "2002—2016 Ricardo Wurmus" }
+}
+
+\include "../../settings.ly"
+\include "../music/common.ly"
+\include "../music/keys.ly"
+
+\score {
+ \new PianoStaff = "keyboard" \with {
+ pedalSustainStyle = #'bracket
+ } {
+ \tempo 4 = 90
+ \compressMMRests { \keyboard }
+ }
+ \layout {
+ indent = #0
+ short-indent = #0
+ \context {
+ \Score
+ \numericTimeSignature
+ }
+ }
+}
diff --git a/01-song1/parts/stick.ly b/01-song1/parts/stick.ly
new file mode 100644
index 0000000..83c2c75
--- /dev/null
+++ b/01-song1/parts/stick.ly
@@ -0,0 +1,29 @@
+\version "2.19.27"
+
+\header {
+ title = "Song 1"
+ subtitle = "Grand Stick"
+ composer = "The very pretentious elephlies"
+ copyright = \markup { \char ##x00A9 "2002—2016 Ricardo Wurmus" }
+}
+
+\include "../../settings.ly"
+\include "../music/common.ly"
+\include "../music/stick.ly"
+
+\score {
+ \new PianoStaff = "grand stick" \with {
+ pedalSustainStyle = #'bracket
+ } {
+ \compressMMRests \stick
+ }
+ \layout {
+ \tempo 4 = 90
+ indent = #0
+ short-indent = #0
+ \context {
+ \Score
+ \numericTimeSignature
+ }
+ }
+}