On 2019-11-21 3:11 pm, Gianmaria Lari wrote:
Consider this situation:

\version "2.21.00"
\tagGroup #'(screenOut midiOut)
nc = {\tag #'midiOut   <c c'>    \tag #'screenOut c' }
nd = {\tag #'midiOut   <d d'>    \tag #'screenOut d' }
myScore = {\nc \nd \nc \nd~\nd}
\score {\keepWithTag #'screenOut \myScore \layout{}}
\score {\keepWithTag #'midiOut \myScore \layout{}} %here should be \midi{}

Is there any way to have a tie in the score generated for the screen
(screenOut) and also in the score generated for the midi (midiOut)?
Thank you, g.

Here's something you can do in 2.19.83:

%%%%
\version "2.19.83"

\tagGroup #'(screenOut midiOut)
nc = {\tag #'midiOut   <c c'>    \tag #'screenOut c' }
nd = {\tag #'midiOut   <d d'>    \tag #'screenOut d' }
myScore = {\nc \nd \nc << \nd s~ >> \nd}
\score {\keepWithTag #'screenOut \myScore \layout{}}
\score {\keepWithTag #'midiOut   \myScore \layout{}}
%%%%


-- Aaron Hill

Reply via email to