Hi,
I am adding back the list in copy. Please always include the list in
your replies so that everyone can participate and benefit from the answers.
Le 25/10/2022 à 18:48, thedoctor81...@tutanota.com a écrit :
Hi Jean,
I am sorry to sound like I don't know what I'm doing, but this is what
I have in my score block, and do I just place a "blnk" layout command,
and where to I put it?
\score {
You are starting a \score block. Among the things a \score block can
contain are
- a music expression
- a \layout block
- a \midi block
\new ChoirStaff <<
Here begins your music expression, which is \new ChoirStaff << lots of
stuff >>.
\new Lyrics = "sopranos" \with {
% this is needed for lyrics above a staff
\override VerticalAxisGroup.staff-affinity = #DOWN
}
\new Staff = "women" <<
\new Voice = "sopranos" {
\voiceOne
<< \global \sopMusic >>
}
\new Voice = "altos" {
\voiceTwo
<< \global \altoMusic >>
}
>>
\new Lyrics = "altos"
\new Lyrics = "tenors" \with {
% this is needed for lyrics above a staff
\override VerticalAxisGroup.staff-affinity = #DOWN
}
\new Staff = "men" <<
\clef bass
\new Voice = "tenors" {
\voiceOne
<< \global \tenorMusic >>
}
\new Voice = "basses" {
\voiceTwo << \global \bassMusic >>
}
>>
\new Lyrics = "basses"
\context Lyrics = "sopranos" \lyricsto "sopranos" \sopWords
\context Lyrics = "altos" \lyricsto "altos" \altoWords
\context Lyrics = "tenors" \lyricsto "tenors" \tenorWords
\context Lyrics = "basses" \lyricsto "basses" \bassWords
>>
Here ends \new ChoirStaff << lots of stuff >>, i.e. the music expression
in the \score block.
\midi {
\set Staff.midiInstrument = #"string ensemble 1"
}
That was your \midi block. And just where I am writing this comment,
after the end of the \midi block and before the closing brace of the
\score block, you add the code :
\layout { }
}
Again, I apologize for not seeming to know what to do.
Best,
Jean