\version "2.11.32" \header { title = "Hear, O Israel (the Shema)" subtitle = "Deuteronomy 6:4-9" tagline = \markup { \fill-line { "License: Creative Commons Attribution 2.5" "Reactor Core Hymn Repository" \with-url #"http://hymns.reactor-core.org/" "http://hymns.reactor-core.org/" } } } #(set-global-staff-size 16) #(set-default-paper-size "letter" 'portrait) increaseBarNumber = \applyContext #(lambda (x) (let ((measurepos (ly:context-property x 'measurePosition))) ; Only increase bar number if not at start of measure. ; This way we ensure that you won't increase bar number twice ; if two parallel voices call increaseBarNumber simultanously: (if (< 0 (ly:moment-main-numerator measurepos)) ; ugh. ignore grace part (begin (ly:context-set-property! (ly:context-property-where-defined x 'internalBarNumber) 'internalBarNumber (1+ (ly:context-property x 'internalBarNumber))) (ly:context-set-property! (ly:context-property-where-defined x 'currentBarNumber) 'currentBarNumber (1+ (ly:context-property x 'currentBarNumber))) ; set main part of measurepos to zero, leave grace part as it is: (ly:context-set-property! (ly:context-property-where-defined x 'measurePosition) 'measurePosition (ly:make-moment 0 1 (ly:moment-grace-numerator measurepos) (ly:moment-grace-denominator measurepos))))))) hardbar = { \bar "|" \increaseBarNumber } \score { \new Staff << \new Voice = "shema" { \key d \minor \clef treble \relative g' { \cadenzaOn d8 \hardbar fis fis fis g r g g \hardbar ees ees ees fis fis fis fis ees ees d r4 d8 \hardbar a' a g16 (a) fis8 fis fis a a a \hardbar g g r g g g \hardbar d ees ees ees ees ees \hardbar fis fis fis fis fis \hardbar d d r4 d8 d fis16 (d fis8) d d \hardbar a' a a16 (g) a8 a \hardbar bes16 (a) d,8 d bes bes bes c c fis fis fis fis \hardbar d d r4 d8 d d \hardbar a' a a g a a a a \hardbar fis g g g g \hardbar bes bes bes c b16 (c) bes8 bes bes \hardbar a a g (a) a a a \hardbar fis fis fis d d r4 d8 d \hardbar ees ees fis fis fis g g r g g ees ees d d fis ees ees \hardbar d d r4 d8 d \hardbar c c c c ees ees \hardbar fis fis fis fis fis \hardbar d d \bar "|." \cadenzaOff } } \new Lyrics \lyricsto "shema" { % verse 4 She -- ma Is -- ra -- el. Ye -- ho -- wah e -- lo -- hay -- nu Ye -- ho -- wah e -- chad. % verse 5 Ve -- a -- hav -- ta et Ye -- ho -- wah e -- lo -- he -- kha be -- khol le -- vav -- kha ouv -- khol naf -- sche -- kha ouv -- khol me -- o -- de -- kha. % verse 6 Ve -- ha -- you had -- va -- rim ha -- e -- le a -- scher a -- no -- khi me -- tsav -- kha ha -- yom al le -- va -- ve -- kha. % verse 7 Ve -- schi -- nan -- tam le -- va -- ne -- kha ve -- di -- bar -- ta bam be -- schiv -- te -- kha be -- ve -- te -- kha ouv -- lekh -- te -- kha va -- de-rekh ouv -- schokh -- be -- kha ouv -- kou -- me -- kha. % verse 8 Ouk -- schar -- tam le -- ot al ya -- de -- kha ve -- ha -- you le -- to -- ta -- fot ben e -- ne -- kha. % verse 9 Oukh -- tav -- tam al me -- zu -- zot be -- te -- kha ou -- visch -- a -- re -- kha. } \new Lyrics \lyricsto "shema" { % verse 4 Hear, O Is -- ra -- el! Ye -- ho -- wah is our God, _ Ye -- ho -- wah a -- lone. % verse 5 You shall _ love _ Ye -- ho -- wah your _ God _ with all your heart, and with all of your soul, and with all of your might. % verse 6 And all these words _ _ here _ _ which _ I _ com -- mand you on this day put in your heart. _ % verse 7 You shall re -- peat them to your child -- ren; you shall say them when you're at rest in _ your house, or walk -- ing a -- broad, as you lie down and as you rise up. % verse 8 Fast -- en them as signs in your hands; _ they will be as a front -- let be -- tween your eyes. % verse 9 Write you them on the door -- posts of your house and on your gat -- es. } >> \layout { \context { \Score \remove "Bar_number_engraver" } \context { \Staff \remove "Time_signature_engraver" } \context { \ChoirStaff \accepts "Lyrics" } \context { \Lyrics \override LyricSpace #'minimum-distance = #1.2 \override LyricText #'self-alignment-X = #LEFT \consists "Bar_engraver" \consists "Separating_line_group_engraver" \override BarLine #'transparent = ##t } } \midi { \context { \Score tempoWholesPerMinute = #(ly:make-moment 50 4) } \context { \Staff midiInstrument = #"church organ" } } }