Op Sat, 16 Jul 2011 09:43:35 -0700
Jay Anderson <horndud...@gmail.com> schreef:

> - Is there a way to use \set associatedVoice "bass" at the beginning?

Put it in the \with { } block:

\new Lyrics \with {
  associatedVoice = "bass"
} \lyricmode { bla bla bla }

Or use the lyricsto construction:

\new Lyrics \lyricsto "bass" { bla bla bla }

To make MIDI differ from printed output the best solution might be to
create a separate \score { } for the midi output:

\score {
  ....music....
}

\score {
  ...music for the MIDI which will mainly use the same variables ...
  \midi { }
}

-- 
Wilbert Berendsen
(http://www.wilbertberendsen.nl)


_______________________________________________
lilypond-user mailing list
lilypond-user@gnu.org
https://lists.gnu.org/mailman/listinfo/lilypond-user

Reply via email to