]> git.donarmstrong.com Git - lilypond.git/blob - input/test/slur-attachment-override.ly
bf48d0bdaa9c91295d15159cd50517b140452f8f
[lilypond.git] / input / test / slur-attachment-override.ly
1 \version "1.3.146"
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.Stem \set #'direction = #1
12   \property Voice.Slur \set #'direction = #1
13   d'32( d'4 )d8..
14   \property Voice.Slur \set #'attachment = #'(stem . stem)
15   d,32( d'4 )d8..
16 }
17
18 \paper { linewidth = -1. } 
19
20 \score {
21   \notes\relative c \fragment
22   \paper { }  
23 }