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