Hi Gabriel,
> Please consider my MWE. Everything “works,” but there’s something that’s not
> ideal: If I were to edit the rhythms of “soprano” or “alto,” I’d also have to
> flow any changes through \aligner. Is there a way to automatically link (in
> this example) the first line of \aligner code to the first line of \soprano
> music code, etc.?
Just smoosh them together! It’s a NullVoice anyway… ;)
%%% SNIPPET BEGINS
\version "2.24.4"
soprano = \relative c'' {
\time 13/4
c c c c c c16( d e d c d e d c d e d c d e d) c1
c4 c c c c c2 c1 c2
}
alto = \relative c'' {
g4 g g g g g1 g
g4 g g g g g2 g16( a b a g a b a g a b a g a b a) g2
}
text = \lyricmode {
Ly -- rics tied to the Null __ Voice:
The ex -- ten -- der bar is just __ right!
}
\score{
\new Staff <<
\new Voice = "soprano" { \voiceOne \soprano }
\new Voice = "alto" { \voiceTwo \alto }
\new NullVoice = "lyricsRhythm" { << \soprano \alto >> }
\new Lyrics \lyricsto "lyricsRhythm" \text
>>
}
%%% SNIPPET ENDS
Hope that helps!
Kieren.
__________________________________________________
My work day may look different than your work day. Please do not feel obligated
to read or respond to this email outside of your normal working hours.