diff options
| author | Thibaut Horel <thibaut.horel@gmail.com> | 2015-09-01 09:35:35 -0700 |
|---|---|---|
| committer | Thibaut Horel <thibaut.horel@gmail.com> | 2015-09-01 09:35:35 -0700 |
| commit | 5fe5d276730e7f331d15f2be85a8597107a7a33e (patch) | |
| tree | 587e861e691d158ef4b27a2ac38f17efa927dfa9 /marie_piano.ly | |
| parent | e0704fc2af7f924673535677310ac613402c873e (diff) | |
| download | wedding-booklet-5fe5d276730e7f331d15f2be85a8597107a7a33e.tar.gz | |
Add piano sheets
Diffstat (limited to 'marie_piano.ly')
| -rw-r--r-- | marie_piano.ly | 115 |
1 files changed, 115 insertions, 0 deletions
diff --git a/marie_piano.ly b/marie_piano.ly new file mode 100644 index 0000000..41a3cb4 --- /dev/null +++ b/marie_piano.ly @@ -0,0 +1,115 @@ +singer = { + r8 c d e d e + e2. + r8 e e e d e + g4. g4. + r8 e e e f g + d2. + r8 d d d d e + e2. + + r8 c d e d e + e2. + r8 e e e d e + g4. g4. + r8 e e e f g + d2. + r8 d d d d e + e2. \bar "||" + + r4 r8 e a b + c4. c4. + b4. b8 g e + a4. a4. + g4. g8 e c + f4. f4. + e4. e8 e e + e4. gis4. + a2. +} + +lyr = \lyricmode{ + La pre -- mière en che -- + min, + Ma -- rie tu nous en -- + traî -- nes + à ris -- quer no -- tre "oui" + aux im -- pré -- vus de + Dieu. + Et voi -- ci qu'est se -- + mé + en l'ar -- gile in -- cer -- + tai -- ne + de notre hu -- ma -- ni -- + té, + Jé -- sus Christ, Fils de + Dieu. + + Marche a -- vec + nous, Ma -- + rie, sur nos che -- + mins de + foi. Ils sont che -- + mins vers + Dieux. Ils sont che -- + mins vers Dieu. + Gloire à Dieu + au plus haut des cieux, + paix sur la terre aux + hom -- mes qu'il ai -- me, + gloire à Dieu + au plus haut des cieux, + paix sur la ter -- re, + joie de l'u -- ni -- vers ! +} + +upper = { + \key c \major + \time 6/8 + \relative c' \repeat volta 2 { + \clef treble + << + \new Voice = "singer" { + \voiceOne \singer + } \new Voice { + \voiceTwo + r4. c,4 c8 + c2. + r8 c2 c8 + b4. b4. + } >> + } +} + +lower = { + \key c \major + \time 6/8 + \clef bass + \relative c' { + } +} + +\book { +\header { + title = "La première en chemin, Marie" +} + +\score { + \new GrandStaff << + \new Staff = "upper" \upper + \new Lyrics \lyricsto "singer" \lyr + \new Staff = "lower" \lower + >> + \layout { + \context { + \GrandStaff + \accepts "Lyrics" + } + \context { + \Lyrics + \consists "Bar_engraver" + } + } + \midi { } +} +} |
