summaryrefslogtreecommitdiffstats
path: root/entree.ly
blob: 65e9539caa81a90779061075376a145a94fd838d (plain)
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
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
melody = {
  \key c \major
  \time 3/4
  \relative c' \repeat volta 2 {
    r2 e8 e |
    a4. a8 e[ e]
    f4 f f8 f
    g4. g8 d[ d]
    e4 e4 e8 e
    c4. c8 d[ d]
    e2 fis8 fis
    gis4 gis a
    b2 e,8 e
    a4. a8 c[ a]
    f4 f g8 a
    b4. a8 b[ g]
    e4 e e8[ e]
    c4. c8 d[ d]
    e2 fis8 fis
    gis4 gis a
    b2 c8 c
    c4. c8 b[ a]
    g4 g c8[ c]
    d4. d8 c[ c]
    b4 b e,8[ e]
    a4. a8 g[ f]
    e2 fis8[ fis]
    gis4 gis a

    \time 4/4
    b2 c8[ c] b[ a]
    g2 a8[ a] g[ f]
    e4 e8[ e] fis4 gis8[ gis]
    a4 b8[ b] c4 d8[ c]
    b2 c8[ c] b[ a]
    g2 a8[ a] g[ f]
    e4 e8[ e] fis4 gis8[ gis]

    \time 3/4
    a4 d8[ c] b[ b]
    a2.

  }
}

lyr = {
  << {
    \set stanza = #"1."
    \set associatedVoice = "melody"
    \lyricmode {
    Si le  -- re vous ap -- |
    pel -- le à ai -- |
    mer comme il vous |
    ai -- me, dans le |
    feu de son Es -- |
    prit,
  }
  } \new Lyrics {
    \set associatedVoice = "melody"
    \set stanza = #"2."
    \lyricmode {
    Si le
     -- re vous ap --
    pel -- le à la
     -- che des A --
     -- tres, en  --
    moins du seul Pas --
    teur,
  }
  } >>

    \lyricmode {
    Bien -- heu -- |
    reux ê -- tes -- |
    vous !
  }
    
  << {
    \set stanza = #"1."
    \lyricmode {
    Si le |
    mon -- de vous ap -- |
    pel -- le à lui |
    rendre une es --  -- |
    ran -- ce, à lui |
    di -- re son sa -- |
    lut,
  }
  } \new Lyrics {
    \set associatedVoice = "melody"
    \set stanza = #"2."
    \lyricmode {
    Si le
    mon -- de vous ap --
    pel -- le à l'ac --
    cueil et au par --
    ta -- ge pour  --
    tir son u -- ni -- ,
  }
  } >>
    
    \lyricmode {
    Bien -- heu -- |
    reux ê -- tes -- |
    vous !
  }
    
  << {
    \set stanza = #"1."
    \set associatedVoice = "melody"
    \lyricmode {
    Si l'É -- |
    gli -- se vous ap -- |
    pel -- le à pei -- |
    ner pour le Roy -- |
    au -- me, aux tra -- |
    vaux de la mois -- |
    son,
  }
  } \new Lyrics {
    \set associatedVoice = "melody"
    \set stanza = #"2."
    \lyricmode {
    Si l'É --
    gli -- se vous ap --
    pel -- le à  --
    pan -- dre l'É -- van --
    gi -- le en tout
    point de l'u -- ni -- vers,
  }
  } >>
    
    \lyricmode {
    Bien -- heu -- |
    reux ê -- tes -- |
    vous !  Tres -- sail -- lez de |
    joie ! Tres -- sail -- lez de |
    joie ! Car vos noms sont ins -- |
    crits pour tou -- jours dans les |
    cieux ! Tres -- sail -- lez de |
    joie ! Tres -- sail -- lez de |
    joie ! Car vos noms sont ins -- |
    crits dans le coeur de |
    Dieu !
  }
}

\score{
  <<
    \new Voice = "melody" { \melody }
    \new Lyrics \lyricsto "melody" { \lyr }
  >>
  \layout {
      \context {
          \Score
              \remove "Bar_number_engraver"
      }
      \context {
        \Lyrics
  \override VerticalAxisGroup #'nonstaff-nonstaff-spacing
    #'minimum-space = #20
      }
  }
  \midi {}
}