]> git.donarmstrong.com Git - lilypond.git/blob - input/regression/midi-unisons.ly
Doc-es: various updates.
[lilypond.git] / input / regression / midi-unisons.ly
1 \header {
2
3   texidoc = "In overlapping unisons, within a single MIDI channel,
4 either the first note is truncated, or the notes are merged if
5 @code{midiMergeUnisons} is @code{#t}. Run
6 @code{timidity -idvvv file.midi |grep Midi} to see midi events."
7
8 }
9
10 \version "2.16.0"
11
12 \score {
13   {
14     \set Score.midiChannelMapping = #'staff
15     \new Staff  << {r8 g'4.} \\ {g'4. r8} >>
16     \new Staff \with { midiMergeUnisons = ##t } << {r8 a'4.} \\ {a'4. r8} >>
17   }
18   \midi {}
19   \layout {}
20 }