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