]> git.donarmstrong.com Git - lilypond.git/blob - input/test/blank-notes.ly
6558c33905b7249c0ea3dcea133cfb4b902ff6b0
[lilypond.git] / input / test / blank-notes.ly
1
2 \header {
3     
4     texidoc = " print lesson sheets that contain blank lines and just portions of blank lines."
5
6 }
7
8 blanknotes = { \property Voice.NoteHead
9                \override #'transparent  = ##t
10                \property Voice.Stem
11                \override #'transparent = ##t }
12 unblanknotes = { \property Voice.NoteHead
13                  \revert #'molecule-callback
14                  \property Voice.Stem
15                  \revert #'molecule-callback }
16
17
18 \score {
19     \notes { c4 d4 
20     \blanknotes e4 f4   \unblanknotes
21              g4 a 
22              }}
23