This code generate a midi file where the first and last measure are played
"legato" because of the slur.
\version "2.19.81"
\include "articulate.ly"
music = { b( b b b) | d' d' d' d' | c'( c' c' c') }
\score {
\articulate \music
\midi{}
}
Now I would like to rewrite the previous code separating the legato
articulation from the music, something like in the following example (that
does not work).
\version "2.19.81"
\include "articulate.ly"
music = { b b b b | d' d' d' d' | c' c' c' c' }
dynamics = { s4( s4 s4 s4) | s1 | s4( s4 s4 s4) }
\score {
\articulate \new Voice <<\music \dynamics>>
\midi{}
}
Any suggestion?
_______________________________________________
lilypond-user mailing list
[email protected]
https://lists.gnu.org/mailman/listinfo/lilypond-user