% -*- coding: utf-8 -*- \header { title = "Non han tante" tagline = "" } %% Macros \include "/home/eyolf/.templates/bookLayout.ly" %\INClude "printLayout.ly" genStuff = { \key g\minor \time 3/2 \layoutTweaks \override Staff.TimeSignature #'style = #'single-digit } %% Melodies melodySoprano = \relative c' { \genStuff \clef treble %music R\longa. d4.( ees8 f2) ees d c c \break d4.( ees8 f2) ees d c1 r2 f f g g1 r2 ees f f1 e2 \break f1 f2 f1 r2\fermata ees ees1 d2 d g g fis1 g1. \fullBarRepDbl \break % quant'ha'l ciel r1. | r2 d2 ees | f1 r2 | R1. r2 r f2 | ees d1 | d2 c1 \break r2 d d | ees1. | r2 c c | d1. | ees | d1 cis2 | d1 ees2 | d1 cis2 | d fis fis | g1 g2 | f1 f2 | f1. } melodyAlt = \relative c' { \genStuff \clef "G_8" %music bes4.( c8 d2) c bes a a bes4.( c8 d2) c bes a1 R\breve. R1. r2 a2 a bes bes1 r2 bes bes c c d c1 bes2 c1 d2 c1 r2\fermata c1 c2 c bes d d1 d2 d1. % quant' R1.| r2 bes2 c | d1 r2 | R1. r2 r d2 | c bes1 | bes2 a1 \break R1.| r2 g2 g | a1. | r2 bes a | g1 g2 | fis1 g2 | a1 c2 | a1 g2 | fis d' d | d1 d2 | c1 c2 | d1. } melodyTenor = \relative c' { \genStuff \clef "G_8" %music R\longa. bes4.( c8 d2) c bes f f bes4.( c8 d2) c bes f1 r2 bes a | g g1 | a bes2 | a1 g2 | a1 bes2 | a1 r2\fermata a1 a2 a g bes bes a1 g1. % quant bes1 c2 | d1 r2 | r2 d1 | c2 bes1 | bes2 a1 | R1. R bes1 bes2 | c1. | r2 f, f | bes1. | r2 c1 | a g2 | fis1 g2 | fis1 g2 | a a a | bes1 bes a2 a | bes1. } melodyBass = \relative c { \genStuff \clef bass %music g'4.( a8 bes2) a g d d g4.( a8 bes2) a g d1 R1. R R r2 f2 ees d d1 r2 ees d c c bes f'1 g2 f1 bes,2 f'1 r2\fermata fis1 fis2 g g g d1 d2 g,1. g'1 a2 | bes1 r2 | r bes1 | a2 g1 | f2 f1 | R1. | f1 f2 | g1. | ees1 ees2 | f1. | r2 bes, bes | c1 c2 d1 ees2 d1 c2 d1 ees2 d d d g( f) ees f1 f2 bes,1. } %% Lyrics textSoprano = \lyricmode { %\set stanza = "1. " %text vers 1 Non han tan -- te i li -- di_a -- re -- ne Stil -- le d’ac -- qua Stil -- le d’ac -- qua_il mar non ha Stil -- le d’ac -- qua il mar non ha quant’ ha’l Ciel stel -- le se -- re -- ne nu -- me -- rar nu -- me -- rar chi mai po -- trà chi mai po -- trà nu -- me -- rar chi mai po -- trà. } textAlt = \lyricmode { %\set stanza = "1. " %text vers 1 Non han tan -- te i li -- di_a -- re -- ne Stil -- le d’ac -- qua Stil -- le d’ac -- qua il mar non ha non ha Stil -- le d’ac -- qua il mar non ha quant’ ha’l Ciel stel -- le se -- re -- ne nu -- me -- rar nu -- me -- rar chi mai po -- trà chi mai po -- trà nu -- me -- rar chi mai po -- trà. } textTenor = \lyricmode { %\set stanza = "1. " %text vers 1 Non han tan -- te i li -- di_a -- re -- ne Stil -- le d’ac -- qua Stil -- le d’ac -- qua_il mar non ha Stil -- le d’ac -- qua il mar non ha quant’ ha’l Ciel stel -- le se -- re -- ne nu -- me -- rar nu -- me -- rar chi mai po -- trà chi mai po -- trà nu -- me -- rar chi mai po -- trà. } textBass = \lyricmode { %\set stanza = "1. " %text vers 1 Non han tan -- te i li -- di_a -- re -- ne Stil -- le d’ac -- qua Stil -- le d’ac -- qua il mar non ha non ha Stil -- le d’ac -- qua il mar non ha quant’ ha’l Ciel stel -- le se -- re -- ne nu -- me -- rar nu -- me -- rar nu -- me -- rar chi mai po -- trà chi mai po -- trà nu -- me -- rar chi mai po -- trà. } %% 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 { \context { \Staff \override VerticalAxisGroup #'minimum-Y-extent = #'(-1 . 1) } \context { \Lyrics %\consists "Bar_engraver" %\consists "Separating_line_group_engraver" %\override barline #'transparent = ##t \override VerticalAxisGroup #'minimum-Y-extent = #'(-1 . 1) } } } %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) } } }