]> git.donarmstrong.com Git - lilypond.git/blob - input/regression/add-stem-support.ly
Issue 5167/6: Changes: show \markup xxx = ... \etc assignments
[lilypond.git] / input / regression / add-stem-support.ly
1 \version "2.19.12"
2
3 \header {
4   texidoc = "@code{add-stem-support} can be removed or implemented
5 only for beamed notes.
6 "
7 }
8
9 music = {
10   \clef bass
11   \stemUp
12   <g^3 a^5>2..->
13   r16 eeses'16
14   \set fingeringOrientations = #'(right)
15   <c e>8-1-4 <c^1 e^4> <g,-3 b,-4> r
16   r2
17 }
18
19 {
20   \music
21   \override Fingering.add-stem-support = ##f
22   \music
23   \override Fingering.add-stem-support = #only-if-beamed
24   \music
25 }