% -*- coding: utf-8 -*- \include "/home/eyolf/.templates/sheetLayout.ly" \paper { line-width = 16.0\cm indent = 15\mm left-margin = 2.5\cm myStaffSize = #18 #(define fonts (make-pango-font-tree "JensonOSN" "Gill Sans" "Lucida Console" (/ myStaffSize 18))) } \header { title = "Ahi, con piagata mano" subtitle = "Tarquinio Longo: Lodi e Canzonette (1608)" subsubtitle = "Aria X" composer = "Laudi e canzonette spirituali. Roma per Ignazio Lazzeri, 1654" poet = "" } %% Macros genStuff = { \key a \minor \time 4/4 \layoutTweaks } %% Melodies melodySoprano = \relative c' { \genStuff \clef treble \CPrim %music e'2. b8 b | b4 b c1 b2 r8 c d e f2. e4 d2 c1 \bar "||" \partial 8 b8 c4. b8 a4. b8 b2 a r8 d e fis8 g4. e8 fis2 e r8 e f4. e8 d4. e8 e2 d2. b4 c d e2. a,4 b1 a } melodyAlt = \relative c' { \genStuff \clef treble \CSec %music c'2. gis8 gis gis4 gis a1 gis2 r8 a b cis8 d4 c4 b c2 b4 c1 gis8 a4. gis8 fis4. gis8 gis2 a r8 b b a b4 e e dis4 e2 | r8 cis8 d4. c8 b4. cis8 | cis2 b2. b4 } melodyBass = \relative c' { \genStuff \clef bass \Basso %music a2. e8 e e4 e a,1 e'2 r8 a8 g e d4 e g1 c,1 } %% Lyrics textSoprano = \lyricmode { %\set stanza = "1. " %text vers 1 } %% score % for layout: \score { \context StaffGroup = choirStaff << \context Voice = sop { \autoBeamOff \melodySoprano \fullBarFinal } \new Lyrics \lyricsto "sop" \textSoprano \context Voice = alt { \autoBeamOff \melodyAlt \fullBarFinal } \context Voice = bas { \autoBeamOff \melodyBass \fullBarFinal } >> \layout { indent = 1\cm \context { \Lyrics \consists "Bar_engraver" \consists "Separating_line_group_engraver" \override BarLine #'transparent = ##t } } } %for midi \score { \context ChoirStaff << \context Staff \melodySoprano \context Staff \melodyAlt \context Staff \melodyBass >> \midi { \context { \Score tempoWholesPerMinute = #(ly:make-moment 70 2) } } }