]> git.donarmstrong.com Git - lilypond.git/blob - input/test/slur-attachment-override.ly
release: 1.3.145
[lilypond.git] / input / test / slur-attachment-override.ly
1
2 \header{
3 texidoc="
4 In some cases, you may want to set slur attachments by hand.
5 ";
6 }
7
8
9 fragment = \notes {
10   \property Voice.Stem \set #'direction = #1
11   \property Voice.Slur \set #'direction = #1
12   d'32( d'4 )d8..
13   \property Voice.Slur \set #'attachment = #'(stem . stem)
14   d,32( d'4 )d8..
15 }
16
17 \paper { linewidth = -1.; } 
18
19 \score {
20   \notes\relative c \fragment
21   \paper { }  
22 }