]> git.donarmstrong.com Git - lilypond.git/blob - input/test/two-slurs.ly
d089a6475dc9c4450a0d187dbb82b6704e1bfbc0
[lilypond.git] / input / test / two-slurs.ly
1 \version "1.3.117";
2 %
3 % We'd want to combine the stems, but have two slurs too...
4 % Looks like the a-due engraver
5 %
6 \score{
7         \context Staff <
8                 \context Voice=v \notes\relative c''{
9                         \stemUp
10                         a4 c4.()g8 a4
11                 }
12                 \context Voice=u \notes\relative c''{
13                         \stemDown
14                         g4 e4.()d8 c4
15                 }
16         >
17         \paper{
18                 linewidth=60.\mm;
19         }
20 }