]> git.donarmstrong.com Git - lilypond.git/blob - input/test/beam-alternate.ly
* scripts/lilypond-book.py (do_file): do not overwrite input file.
[lilypond.git] / input / test / beam-alternate.ly
1
2 \header {
3
4     texidoc = "Meshing eighths beams, connected by ties. This occurs
5     in (for example) in the cello suites. See also
6     @file{tie-cross-voice.ly}."
7
8 }
9
10 \version "2.1.26"
11
12 wipeNote = {
13     \once \override NoteHead #'transparent = ##t
14     \once \override Stem #'transparent = ##t 
15 }
16
17
18 \score {
19     \notes \relative c'' {
20         << {
21             c8[~
22             \wipeNote
23             c8
24             c8~
25             \wipeNote
26             c~
27             c]
28         }\\
29            { s8 c8 [ s c s c] }
30
31            
32        >>
33     }
34     \paper { raggedright = ##t }
35 }