% -*- coding: utf-8 -*- \header { % title = "Cuor mio" tagline = "" } \include "/home/eyolf/.templates/bookLayout.ly" genStuff = { \key c\major \time 3/4 \override Score.TimeSignature #'style = #'single-digit \layoutTweaks \override Staff.TimeSignature #'style = #'single-digit } %% Melodies melodySoprano = \relative c' { \genStuff \clef treble r4 r g'4 g2. a4 g4. f8 e2 c'4 b4. c8 d4 g, a b \break c d4. e8 c4 d e e d4. c8 d2 e4 d2 c4 c b4. a8 gis2 gis4 a a4. g8 fis4 d d' d d4. c8 b4 g c e d4. c8 c2 } melodyAlt = \relative c' { \genStuff \clef "G_8" r4 r e4 e2. f4 d4. d8 c2 c4 d4. e8 f4 g f d e g4. g8 g4 g g g4. g8 g4 g2 g4 g2 e4 fis g4. d8 e2 e4 e e4. e8 d4 a b c d4. d8 d4 d e g g4. g8 g2 } melodyTenor = \relative c' { \genStuff \clef "G_8" r4 r c4 c2. c4 b4. a8 g2 a4 b4. b8 a4 c c b a b4. b8 c4 g g g g4. a8 b2 c4 b c2 c4 d4. a8 b2 b4 b a4. a8 a4 fis fis g a4. a8 b4 b g c c4. b8 c2 } melodyBass = \relative c { \genStuff \clef bass r4 r c4 c2. f4 g4. g8 c,2 a'4 g4. g8 f4 e f g a g4. g8 c,4 b c c b4. a8 g2 c4 g'2 a4 a g4. f8 e2 e4 d cis4. cis8 d4 d d e fis4. fis8 g4 g e c g' g, c2 } %% Lyrics textSoprano = \lyricmode { \lyricTweak Cuor mio che più si fà all’ al -- te glo -- rie dell’ al -- ma Tri -- ni -- tà og -- gi tri -- bu -- to dà. che te -- mi? non ha a vil un mar ch’è on -- dan -- te im -- mens’ e spu -- man -- te ru -- scel -- lett’ u -- mil. } textAlt = \lyricmode { \lyricTweak Cuor mio che più si fà all’ al -- te glo -- rie dell’ al -- ma Tri -- ni -- tà og -- gi tri -- bu -- to da. che te -- mi? non ha a vil un mar ch’è on -- dan -- te im -- mens’ e spu -- man -- te ru -- scel -- lett’ u -- mil. } textTenor = \lyricmode { \lyricTweak Cuor mio che più si fà all’ al -- te glo -- rie dell’ al -- ma Tri -- ni -- tà og -- gi tri -- bu -- to da. che te -- mi? non ha a vil un mar ch’è on -- dan -- te im -- mens’ e spu -- man -- te ru -- scel -- lett’ u -- mil. } textBass = \lyricmode { \lyricTweak Cuor mio che più si fà all’ al -- te glo -- rie dell’ al -- ma Tri -- ni -- tà og -- gi tri -- bu -- to da. che te -- mi? non ha a vil un mar ch’è on -- dan -- te im -- mens’ e spu -- man -- te ru -- scel -- lett’ u -- mil. } %% score % for layout: \score { \context StaffGroup = choirStaff << \context Voice = sop { \autoBeamOff \melodySoprano \fullBarFinal } \new Lyrics \lyricsto "sop" \textSoprano \context Voice = alt { \autoBeamOff \melodyAlt } \new Lyrics \lyricsto "alt" \textAlt \context Voice = ten { \autoBeamOff \melodyTenor } \new Lyrics \lyricsto "ten" \textTenor \context Voice = bas { \autoBeamOff \melodyBass } \new Lyrics \lyricsto "bas" \textBass >> \layout { } } %for midi \score { \context ChoirStaff << \context Staff \melodySoprano \context Staff \melodyAlt \context Staff \melodyTenor \context Staff \melodyBass >> \midi { \context { \Score tempoWholesPerMinute = #(ly:make-moment 100 2) } } }