summaryrefslogtreecommitdiff
path: root/03-circus/parts
diff options
context:
space:
mode:
authorrekado <rekado@elephly.net>2015-10-21 16:05:42 +0200
committerrekado <rekado@elephly.net>2015-10-21 16:05:42 +0200
commit7373d36392b382610929575ecd18ac08bcba7103 (patch)
tree7a1a6eaaf99df48926fb5c51601e7036fdf1ce88 /03-circus/parts
parent736d539498cb0bd4d7041494bd8c310d3e0d9590 (diff)
circus: keys: Align intro repeats with bass.
Diffstat (limited to '03-circus/parts')
-rw-r--r--03-circus/parts/keyboard.ly28
1 files changed, 22 insertions, 6 deletions
diff --git a/03-circus/parts/keyboard.ly b/03-circus/parts/keyboard.ly
index f720ebc..5936bce 100644
--- a/03-circus/parts/keyboard.ly
+++ b/03-circus/parts/keyboard.ly
@@ -9,7 +9,6 @@ keyboardIntroUpper = \relative c' {
<dis fis ais>8 r r <d fis ais>8 ~ <d fis ais>2 |
<dis fis ais>8 r r <d fis ais>8 ~ <d fis ais>2 |
- r2 |
}
keyboardIntroLower = \relative c {
@@ -19,7 +18,18 @@ keyboardIntroLower = \relative c {
cis-. gis-.
dis8 r r d ~ d2 |
dis8 r r d ~ d2 |
- r2 |
+}
+
+keysIntroEndUpper = \relative c' {
+ r8 <cis e gis>-. r <cis e gis>-. |
+ r <cis e gis>-. r <cis e gis>-. |
+ r <cis e gis>-. r <cis e gis>-. |
+ r <cis e gis>-. r <cis e gis>-. |
+}
+
+keysIntroEndLower = \relative c {
+ cis4-. gis-. | cis-. gis-. |
+ cis-. gis-. | cis-. gis-. |
}
keyboard = \new PianoStaff <<
@@ -28,15 +38,21 @@ keyboard = \new PianoStaff <<
\time 2/4
\key cis \minor
r4 r8 <cis e g> ~ |
- \keyboardIntroUpper
- \keyboardIntroUpper
+ \repeat volta 2 \keyboardIntroUpper
+ \alternative {
+ { r2 | }
+ { \keysIntroEndUpper }
+ }
}
\new Staff \relative c {
\clef bass
\key cis \minor
r2 |
- \keyboardIntroLower
- \keyboardIntroLower
+ \repeat volta 2 \keyboardIntroLower
+ \alternative {
+ { r2 | }
+ { \keysIntroEndLower }
+ }
}
>>