]> git.donarmstrong.com Git - lilypond.git/blob - input/regression/note-head-harmonic.ly
9b6fd12fb210dbbc9b9a30243bfae5f9a2698e67
[lilypond.git] / input / regression / note-head-harmonic.ly
1 \header
2 {
3     texidoc = "  The handling of stems for harmonic notes must be
4    completely identical to normal note heads."
5 }
6
7 \version "2.1.9"
8
9 \score {
10   \context Voice \notes {
11     << { c''4 }
12        \new Thread {
13            \property Thread.NoteHead \set #'style = #'harmonic
14            f''4
15        }
16    >>
17   }
18
19   \paper {
20     linewidth = 50.0\mm
21     indent = 0.0\mm
22   }
23 }