From 86ef2a0a16898d390654d51a8a61463968fa3d38 Mon Sep 17 00:00:00 2001 From: rekado Date: Fri, 16 Oct 2015 22:19:03 +0200 Subject: circus: move to subdir. --- 03-circus/03-circus.ly | 43 +++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 43 insertions(+) create mode 100644 03-circus/03-circus.ly (limited to '03-circus/03-circus.ly') diff --git a/03-circus/03-circus.ly b/03-circus/03-circus.ly new file mode 100644 index 0000000..7dfda60 --- /dev/null +++ b/03-circus/03-circus.ly @@ -0,0 +1,43 @@ +\version "2.19.27" + +\header { + title = "Circus" + composer = "The very pretentious elephlies" + arranger = "Ricardo Wurmus" + copyright = "2002--2015 Ricardo Wurmus" +} + +\include "parts/bass.ly" +\include "parts/keyboard.ly" +\include "parts/stick.ly" + +AllMusic = << + \new Staff = "keyboard" { \keyboard } + \new Staff = "bass" { \bass } + \new Staff = "grand stick" { \stick } +>> + +%% Two scores are needed: one with unfolded repeats for MIDI and the +%% other with regular repeats for notation. +\score { + \unfoldRepeats { \AllMusic } + \midi { \tempo 4 = 120 } +} + +\score { + \AllMusic + \layout { + \tempo 4 = 120 + \context { + %% add the RemoveEmptyStaffContext that erases rest-only staves + \Staff \RemoveEmptyStaves + } + \context { + \Score + %% Remove all-rest staves also in the first system + \override VerticalAxisGroup.remove-first = ##t + %% If only one non-empty staff in a system exists, still print the starting bar + \override SystemStartBar.collapse-height = #1 + } + } +} -- cgit v1.2.3