Setting a multipart missa from several files, I would like to set the
piece information more pronounced. The following ist a MWE.
\version "2.25.7"
\language "deutsch"
\header {
title = "Pastoral-Messe in C"
piece = "Kyrie"
}
\include "1_Kyrie.ly"
%end file"missa.ly"
_______________________________
%begin file "1_Kyrie.ly"
\header {
% title = "Ignaz Reimann, Pastoral-Messe in C"
}
global = {
\key c \major
\numericTimeSignature
\time 6/8
}
solo = ^\markup {\bold { Solo } }
soprano = \relative c'' {
\global\autoBeamOff
% Die Noten folgen hier.
R2.*6 R2. R2. g8\solo [(e)] f g4 a8 |
}
sopranoVerse = \lyricmode {
% Liedtext folgt hier.
Ky -- ri -- e e -- lei -- son
}
Sopran = \new Staff = "sopran" \with {
midiInstrument = "choir aahs"
instrumentName = "Sopran"
}
<<
\new Voice = "sop" { \soprano }
\new Lyrics \lyricsto "sop" { \sopranoVerse }
>>
\score {
<<
\Sopran
>>
\layout { }
\midi {
\tempo 4=100
}
}