summaryrefslogtreecommitdiff
path: root/03-circus/parts
diff options
context:
space:
mode:
authorrekado <rekado@elephly.net>2016-06-06 22:11:13 +0200
committerrekado <rekado@elephly.net>2016-06-06 22:11:13 +0200
commitc2fbdb938f352c10f1a993f056964e1ea5d91052 (patch)
treeb9b4f47c40e5c885559dfe8fbb6398ffe1d6e2b9 /03-circus/parts
parente03ab1abc4ff06d9c9fafd35d568ec55f4114fe4 (diff)
circus: Add parts.
Diffstat (limited to '03-circus/parts')
-rw-r--r--03-circus/parts/bass.ly24
-rw-r--r--03-circus/parts/keys.ly28
-rw-r--r--03-circus/parts/stick.ly28
3 files changed, 80 insertions, 0 deletions
diff --git a/03-circus/parts/bass.ly b/03-circus/parts/bass.ly
new file mode 100644
index 0000000..3b4dc67
--- /dev/null
+++ b/03-circus/parts/bass.ly
@@ -0,0 +1,24 @@
+\version "2.19.27"
+
+\header {
+ title = "Circus"
+ subtitle = "Bass"
+ composer = "The very pretentious elephlies"
+ copyright = \markup { \char ##x00A9 "2002—2016 Ricardo Wurmus" }
+}
+
+\include "../../settings.ly"
+\include "../music/bass.ly"
+
+\score {
+ \compressMMRests { \bass }
+
+ \layout {
+ indent = #0
+ short-indent = #0
+ \context {
+ \Score
+ \numericTimeSignature
+ }
+ }
+}
diff --git a/03-circus/parts/keys.ly b/03-circus/parts/keys.ly
new file mode 100644
index 0000000..c27a121
--- /dev/null
+++ b/03-circus/parts/keys.ly
@@ -0,0 +1,28 @@
+\version "2.19.27"
+
+\header {
+ title = "Circus"
+ subtitle = "Keyboard"
+ composer = "The very pretentious elephlies"
+ copyright = \markup { \char ##x00A9 "2002—2016 Ricardo Wurmus" }
+}
+
+\include "../../settings.ly"
+\include "../music/keys.ly"
+
+\score {
+ \new PianoStaff = "keyboard" \with {
+ pedalSustainStyle = #'bracket
+ } {
+ \compressMMRests \keyboard
+ }
+ \layout {
+ \tempo 4 = 90
+ indent = #0
+ short-indent = #0
+ \context {
+ \Score
+ \numericTimeSignature
+ }
+ }
+}
diff --git a/03-circus/parts/stick.ly b/03-circus/parts/stick.ly
new file mode 100644
index 0000000..f3b72c5
--- /dev/null
+++ b/03-circus/parts/stick.ly
@@ -0,0 +1,28 @@
+\version "2.19.27"
+
+\header {
+ title = "Circus"
+ subtitle = "Grand Stick"
+ composer = "The very pretentious elephlies"
+ copyright = \markup { \char ##x00A9 "2002—2016 Ricardo Wurmus" }
+}
+
+\include "../../settings.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
+ }
+ }
+}