]> git.donarmstrong.com Git - lilypond.git/blob - input/test/slur-attachment-override.ly
* scripts/convert-ly.py (FatalConversionError.figures_replace):
[lilypond.git] / input / test / slur-attachment-override.ly
1
2 \version "1.9.4"
3
4 \header{
5 texidoc="@cindex Slur Attachment Override
6 In some cases you may want to set slur attachments by hand. "
7 }
8
9
10 %%
11 %% except that both slurs are stem <<-> stem.
12 %%
13
14 fragment = \notes {
15   \property Voice.autoBeaming = ##f
16   \property Voice.Stem \set #'direction = #1
17   \property Voice.Slur \set #'direction = #1
18   d'32( f'4  d8..)
19   \property Voice.Slur \set #'attachment = #'(stem . stem)
20   d,32( f'4  d8.)
21 }
22
23
24 \score {
25         \notes\relative c \fragment
26         \paper { raggedright = ##t} 
27 }
28