]> git.donarmstrong.com Git - lilypond.git/blob - input/test/drarn.ly
* scripts/convert-ly.py (FatalConversionError.figures_replace):
[lilypond.git] / input / test / drarn.ly
1
2 \version "1.9.4"
3 \header{texidoc="@cindex Drarn
4 You can attach slurs and ties to noteheads.
5 " }
6
7 \score {
8   \context Staff \notes <<
9     
10      \relative c'' {
11 \time 3/8        
12       \property Voice.Stem \set #'direction = #1
13       \property Voice.Tie \set #'direction = #1
14       \property Voice.Slur \set #'direction = #1
15       \property Voice.Slur \set #'attachment = #'(head . head)
16       c8~c(c)  
17     }\\
18      \relative c'' {
19       \property Voice.Stem \set #'direction = #-1
20       \property Voice.Tie \set #'direction = #-1
21       \property Voice.Slur \set #'direction = #-1
22       \property Voice.Slur \set #'attachment = #'(head . head)
23       a8(a)~a  
24     }
25   >>
26   \paper { linewidth = 40*\staffspace
27                 raggedright = ##t } 
28 }
29