From aaf7dd6af586167226725c5f26ec7c51fd903649 Mon Sep 17 00:00:00 2001 From: John Doe Date: Wed, 7 Feb 2018 23:32:34 +0530 Subject: [PATCH] Introduction - add second and third voice music, dynamics --- main.ly | 1 + music/1-introduction/guitar.ly | 115 +++++++++++++++++++++++++++------ 2 files changed, 95 insertions(+), 21 deletions(-) diff --git a/main.ly b/main.ly index 70eed62..25a4381 100644 --- a/main.ly +++ b/main.ly @@ -15,6 +15,7 @@ \score { << \new Staff << \guitar >> + \new Dynamics { \guitarDynamics } >> \layout {} \header { diff --git a/music/1-introduction/guitar.ly b/music/1-introduction/guitar.ly index 4a2edcd..37ec0e0 100755 --- a/music/1-introduction/guitar.ly +++ b/music/1-introduction/guitar.ly @@ -2,65 +2,138 @@ guitarVoiceOne = \relative c' { - 4 q8 q8. 16 8 | + % 01 + 4 q8 \grace g16 q8. 16 8 | cis4 8 q4 r8 | - g'4 g8 g8. f16 e8 | - f4 8 q4 r8 | - c'4 c8 d16 c bes a g fis | + g'4 g8 \grace a16 g8. f16 e8 | + d4 8 q4 r8 | + + % 05 + c'4 c8\turn d16 c bes a g fis | g4 8 q4 r8 | 4. q | 4. r | + + % 09 bes16( a) bes( a) bes8 r | a16( gis) a( gis) a8 r q | 4. r8 q | 4. r8 q | + + % 13 q q q g16( f) e-. d-. | f8 q q q g16( f) e-. d-. | f8 q q q g16( f) e-. d-. | 4. | + + % 17 | ~ q4 8 | 4. q8 | 4. r | + + % 21 | r4 8 | - 4. | + 4. | r | - a,2.\fermata | \bar "|." + + % 25 + \acciaccatura { gis,32 a bes } a2.\fermata | \bar "|." } guitarVoiceTwo = \relative c, { \voiceTwo + + % 01 d4 d'8 d,4. | e'4 e,8 e4 r8 | bes''4 bes8 bes8. a16 g8 | f4 8 4 r8 | + % 05 + s4. s | + r4 bes8 bes4 r8 | + bes4. bes | + \repeat unfold 6 a8 | + + % 09 + 4. a8 a a | + 4. a8 a a | + 4. a | + a8 a a | + + % 13 + bes8 bes bes bes4. | + r8 bes bes bes4. | + r8 bes bes bes4. | + \repeat unfold 6 a8 | + + % 17 + \repeat unfold 6 a8 | + \repeat unfold 6 a8 | + \repeat unfold 6 a8 | + \repeat unfold 6 a8 | + + % 21 + \repeat unfold 6 a8 | + \repeat unfold 6 a8 | + \repeat unfold 6 a8 | + \repeat unfold 6 a8 | + + % 25 + a2. | \bar "|." + } -guitarVoiceThree = \relative c' { +guitarVoiceThree = \relative c { \voiceThree - a4 a8 a8. g16 f8 | - e4 r8 r4. | - bes''4 bes8 bes8. a16 g8 | - bes''4 bes8 bes8. a16 g8 | - f4 8 4 r8 | + % 01 + s4. s | + s4. s | + s4. s | + s4. s | + + % 05 + s4. s | + s4. s | + \acciaccatura { d32 e } f8. e16 d8-. \acciaccatura { d32 e } f8. e16 d8-. | + s4. s | + + % 09 + s4. s | + s4. s | + bes'16( a) bes( a) bes8 s4. | + a16( gis) a( gis) a8 s4. | } guitar = \relative c' { - \clef "treble_8" - \key d \minor - \time 6/8 + \clef "treble_8" + \key d \minor + \time 6/8 - << - { \guitarVoiceOne } - \\ - { \guitarVoiceTwo } - >> + << + { \guitarVoiceOne } + \\ + { \guitarVoiceTwo } + \\ + { \guitarVoiceThree } + >> - } +} + +guitarDynamics = { + + s4.\p s | + s4 s8\f s4. | + s8\p s4 s4. | + s s | + s4\p s8 s4. | + s4\f s8 s4. | + +}