]> git.donarmstrong.com Git - lilypond.git/blob - input/regression/tie-chord.ly
* input/regression/tie-manual.ly: new file
[lilypond.git] / input / regression / tie-chord.ly
1 \header {
2
3
4   texidoc = "In chords, ties keep closer to the note head vertically,
5 but never collide with heads or stems. Seconds are formatted up/down;
6 the rest of the ties are positioned according to their  vertical position."
7   
8
9 }
10
11 \version "2.7.7"
12
13 \paper {
14   indent = #0.0
15   raggedright = ##t
16 }
17
18 testShort =
19 {
20    \time 4/4
21   \key c \major
22   \relative c'' {
23                                 %  c ~ c
24     <c e> ~ <c e>
25     <b c e> ~ <b c e>
26     <a c e> ~ <a c e>
27     <a b e> ~ <a b e>
28     <a b e f> ~ <a b e f> 
29   }
30
31   \relative c' {
32     <c e f a> ~ <c e f a>
33     <c e g a> ~ <c e g a>
34     
35     <a' c d f> ~ <a c d f>  
36     <a c e f> ~ <a c e f>
37     <a b c d e> ~ <a b c d e>
38   }
39 }  
40
41 testLong =
42 {
43   \time 5/8
44   \key c \major
45   \relative c'' {
46     <c e>2 ~ <c e>8
47     <b c e>2 ~ <b c e>8
48     <a c e>2 ~ <a c e>8
49     <a b e>2 ~ <a b e>8
50     <a b e f>2 ~ <a b e f>8
51   }
52
53   \relative c' {
54     <c e f a>2 ~ <c e f a>8
55     <c e g a>2 ~ <c e g a>8
56     <a' c d f>2  ~   <a c d f>8  
57     <a c e f>2  ~   <a c e f>8  
58   }
59 }  
60
61 \new Voice
62 { \testShort \break
63   \transpose c d \testShort \break
64   \testLong \break
65   \transpose c d \testLong \break
66 }
67