Hi Jogchum,

> Yes, this works perfectly, thanks!

Great!

> I'm not  sure what you mean by "unnecessary convoluted" of my code - do you 
> mean the placement of the brackets and the indentation?

No… that’s a personal preference, really. I meant things like:

1. Defining a global variable, but then putting most of the global items 
(\time, etc.) into the voice variable directly.

2. All the extra \new Voice contexts you have, where they’re not needed.

3. Attaching the lyrics to two different voices instead of one.

4. Having the same \with block on every Lyrics context, instead of modifying 
the context separately.

etc.

As just one example, I find

`<<
  { \voiceOne \tuplet 3/2 { g2 g4 } }
  \\
  \new Voice = "alto2" {  \voiceTwo \tuplet 3/2 { e4( d) c } }
`>>

far easier to understand at a quick glance than

`<<
  \new Voice = "alto2" {  <<  { \voiceOne \tuplet 3/2 { g2 g4}
                              }
                              \new Voice {  \voiceTwo \tuplet 3/2 { e4(d) c }
                                         }
    `>>
                         \oneVoice
                       }
`>> \time 3/4

Regardless, I’m glad the fix worked for you!  :)

Best,
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.


Reply via email to