My lilypond snippet generates a score, containing a glissando (slide from one pitch to another) correctly. It generates a midi file, but it doesn't sound like a slide from one pitch to another. It sounds like 2 distinct pitches. My instrument is set to violin.
What is the correct way to generate glissando in midi file?
\version "2.18.2"
\include "articulate.ly"
\score {
\articulate
<<
\new Staff {
\set Staff.midiInstrument = #"violin"
\relative a' {
a4 \glissando d
}
}
>>
\layout { }
\midi { }
}