lilypond-user
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

Apply legato to music


From: Gianmaria Lari
Subject: Apply legato to music
Date: Tue, 8 May 2018 10:05:10 +0200

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?

reply via email to

[Prev in Thread] Current Thread [Next in Thread]