From c2fbdb938f352c10f1a993f056964e1ea5d91052 Mon Sep 17 00:00:00 2001 From: rekado Date: Mon, 6 Jun 2016 22:11:13 +0200 Subject: circus: Add parts. --- 03-circus/parts/bass.ly | 24 ++++++++++++++++++++++++ 03-circus/parts/keys.ly | 28 ++++++++++++++++++++++++++++ 03-circus/parts/stick.ly | 28 ++++++++++++++++++++++++++++ 3 files changed, 80 insertions(+) create mode 100644 03-circus/parts/bass.ly create mode 100644 03-circus/parts/keys.ly create mode 100644 03-circus/parts/stick.ly (limited to '03-circus/parts') 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 + } + } +} -- cgit v1.2.3