-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathSoldiersTale.ly
62 lines (52 loc) · 1.17 KB
/
SoldiersTale.ly
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
\version "2.17.0"
\include "functions.ly"
\header {
title = "The Soldier's Tale Suite"
subtitle = "Part 1 / Introduction"
composer = "Igor Stravinsky"
tagline = ##f
copyright = \markup { "keehun.com" \char ##x00A9 "2012" }
}
\layout {
\context {
\RemoveEmptyStaffContext
% To use the setting globally, uncomment the following line:
% \override VerticalAxisGroup #'remove-first = ##t
\override Beam #'breakable = ##t
}
}
#(set-global-staff-size 16)
\paper {
system-system-spacing #'basic-distance = #26
between-system-padding = #5
system-separator-markup = \slashSeparator
indent = 3\cm
scoreTitleMarkup = \markup {
\fill-line {
\null
\fontsize #2 \bold \fromproperty #'header:piece
\fromproperty #'header:opus
}
}
}
\include "parts/trumpet.ly"
\include "parts/trombone.ly"
\include "parts/clarinet.ly"
\include "parts/bassoon.ly"
\include "parts/percussion.ly"
\include "parts/violin.ly"
\include "parts/contrabass.ly"
\book {
\score {
\include "movement1-layout.ly"
\header {
piece = "The Soldier's March"
}
}
\score {
\include "movement2-layout.ly"
\header {
piece = "The Royal March"
}
}
}