]> git.donarmstrong.com Git - lilypond.git/blob - input/tricks/drarn-slurs.ly
patch::: 1.3.144.jcn6
[lilypond.git] / input / tricks / drarn-slurs.ly
1
2 \header{
3 texidoc="
4 Slurs can be forced to always attach to note heads.
5 ";
6 }
7
8 fragment = \notes {
9   \property Voice.Slur \set #'direction = #1
10   \property Voice.Slur \set #'attachment = #'(head . head)
11   g''16()g()g()g()d'()d()d()d
12 }
13
14 \paper { linewidth = -1.; } 
15
16 \score {
17   \notes\relative c \fragment
18   \paper { }  
19 }