]> git.donarmstrong.com Git - lilypond.git/blob - input/regression/ledger-lines-non-merging.ly
Issue 5167/6: Changes: show \markup xxx = ... \etc assignments
[lilypond.git] / input / regression / ledger-lines-non-merging.ly
1 \version "2.19.49"
2
3 \header {
4   texidoc = "In some rare cases like these the
5 extents of two ledger lines at the same vertical
6 position in the same note column do not overlap
7 horizontally, and they should not be merged into
8 a single ledger line.
9 See LSR 505: Displaying complex chords
10 http://lsr.di.unimi.it/LSR/Item?id=505
11 "
12 }
13
14 fixA = {
15   \once \override Stem.length = #11
16 }
17
18 fixB = {
19   \once \override NoteHead.X-offset = #1.7
20   \once \override Stem.length = #7
21   \once \override Stem.rotation = #'(45 0 0)
22   \once \override Stem.extra-offset = #'(-0.1 . -0.2)
23   \once \override Flag.style = #'no-flag
24   \once \override Accidental.extra-offset = #'(4 . -.1)
25 }
26
27 \relative c' {
28   % case 1
29   \pitchedTrill a'' \startTrillSpan a
30   % case 2
31   << { \fixA <b,,, d!>8 } \\ { \voiceThree \fixB dis } >> s
32 }