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