summaryrefslogtreecommitdiffstats
path: root/universal_piano.ly
diff options
context:
space:
mode:
authorThibaut Horel <thibaut.horel@gmail.com>2015-09-01 09:35:35 -0700
committerThibaut Horel <thibaut.horel@gmail.com>2015-09-01 09:35:35 -0700
commit5fe5d276730e7f331d15f2be85a8597107a7a33e (patch)
tree587e861e691d158ef4b27a2ac38f17efa927dfa9 /universal_piano.ly
parente0704fc2af7f924673535677310ac613402c873e (diff)
downloadwedding-booklet-5fe5d276730e7f331d15f2be85a8597107a7a33e.tar.gz
Add piano sheets
Diffstat (limited to 'universal_piano.ly')
-rw-r--r--universal_piano.ly85
1 files changed, 85 insertions, 0 deletions
diff --git a/universal_piano.ly b/universal_piano.ly
new file mode 100644
index 0000000..c5b37a7
--- /dev/null
+++ b/universal_piano.ly
@@ -0,0 +1,85 @@
+singer = {
+ b8[ b] gis e |
+ cis'4 b |
+ b8 gis4 e8 |
+ fis2
+ b8[ b] gis e |
+ cis'4 b |
+ gis8 e4 fis8 |
+ e2
+}
+
+lyr = \lyricmode{
+ En -- tends nos pri --
+ è -- res,
+ En -- tends nos
+ voix.
+ En -- tends nos pri --
+ è -- res
+ Mon -- ter vers
+ toi.
+}
+
+upper = {
+ \key e \major
+ \time 2/4
+ \clef treble
+ \relative c'' {
+ \clef treble
+ <<
+ \new Voice = "singer" {
+ \voiceOne
+ \singer
+ } \new Voice {
+ \voiceTwo
+ e4 r4
+ a gis
+ e4 s4
+ s2
+ e4 r4
+ a gis
+ }
+ >>
+ }
+}
+
+lower = {
+ \key e \major
+ \time 2/4
+ \clef bass
+ \relative c {
+ <e gis b>2
+ <a cis e>4 <e gis b>4
+ r2
+ <b dis fis a>2
+ <e gis b>2
+ <a cis e>4 <e gis b>4
+ r2
+ <b e gis b>2 \bar "|."
+
+ }
+}
+
+\book {
+ \header {
+ title = "Entends nos prières"
+ }
+\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 { }
+}
+}