]> git.donarmstrong.com Git - lilypond.git/blob - input/test/beam-alternate.ly
4002e75165af13fc7198ca36b483f87d64d7a42c
[lilypond.git] / input / test / beam-alternate.ly
1
2 \header {
3
4     texidoc = "The eighth notes may be seemingly attached to different
5     beams, and the corresponding notes connected by ties (see also
6     @file{tie-cross-voice.ly}). 
7     Such a situation may occur, for example, in the cello suites."
8
9 }
10
11 \version "2.1.26"
12
13 wipeNote = {
14     \once \override NoteHead #'transparent = ##t
15     \once \override Stem #'transparent = ##t 
16 }
17
18
19 \score {
20     \notes \relative c'' {
21         << {
22             c8[~
23             \wipeNote
24             c8
25             c8~
26             \wipeNote
27             c~
28             c]
29         }\\
30            { s8 c8 [ s c s c] }
31
32            
33        >>
34     }
35     \paper { raggedright = ##t }
36 }