LEFT | RIGHT |
1 \version "2.17.5" | 1 \version "2.17.6" |
2 | 2 |
3 \header { | 3 \header { |
4 texidoc = "@code{VerticalAxisGroup} grobs can place outside staff objects | 4 texidoc = "@code{VerticalAxisGroup} grobs can place outside staff objects |
5 using one of the four directives shown below. | 5 using one of the four directives shown below. |
6 " | 6 " |
7 } | 7 } |
8 | 8 |
9 | 9 |
10 \layout { | 10 \layout { |
11 ragged-right = ##t | 11 ragged-right = ##t |
12 indent = 0.0 | 12 indent = 0.0 |
13 \context { | 13 \context { |
14 \Voice | 14 \Voice |
15 \remove "Ligature_bracket_engraver" | 15 \remove "Ligature_bracket_engraver" |
16 \consists "Mensural_ligature_engraver" | 16 \consists "Mensural_ligature_engraver" |
17 } | 17 } |
18 \context { | 18 \context { |
19 \Score | 19 \Score |
20 \override SpacingSpanner #'packed-spacing = ##t | 20 \override SpacingSpanner.packed-spacing = ##t |
21 \override PaperColumn #'keep-inside-line = ##f | 21 \override PaperColumn.keep-inside-line = ##f |
22 } | 22 } |
23 } | 23 } |
24 | 24 |
25 music = \context Voice { | 25 music = \context Voice { |
26 \clef "petrucci-c4" | 26 \clef "petrucci-c4" |
27 \set Staff.printKeyCancellation = ##f | 27 \set Staff.printKeyCancellation = ##f |
28 \cadenzaOn % turn off bar lines | 28 \cadenzaOn % turn off bar lines |
29 \accidentalStyle forget | 29 \accidentalStyle forget |
30 \textLengthOn | 30 \textLengthOn |
31 | 31 |
(...skipping 46 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
78 | 78 |
79 \[ | 79 \[ |
80 g1^\markup { "SS" } | 80 g1^\markup { "SS" } |
81 b | 81 b |
82 \] | 82 \] |
83 | 83 |
84 \bar "|" | 84 \bar "|" |
85 } | 85 } |
86 | 86 |
87 { | 87 { |
88 \override Staff.VerticalAxisGroup #'outside-staff-placement-directive = | 88 \override Staff.VerticalAxisGroup.outside-staff-placement-directive = |
89 #'left-to-right-polite | 89 #'left-to-right-polite |
90 \music | 90 \music |
91 } | 91 } |
92 { | 92 { |
93 \override Staff.VerticalAxisGroup #'outside-staff-placement-directive = | 93 \override Staff.VerticalAxisGroup.outside-staff-placement-directive = |
94 #'left-to-right-greedy | 94 #'left-to-right-greedy |
95 \music | 95 \music |
96 } | 96 } |
97 { | 97 { |
98 \override Staff.VerticalAxisGroup #'outside-staff-placement-directive = | 98 \override Staff.VerticalAxisGroup.outside-staff-placement-directive = |
99 #'right-to-left-polite | 99 #'right-to-left-polite |
100 \music | 100 \music |
101 } | 101 } |
102 { | 102 { |
103 \override Staff.VerticalAxisGroup #'outside-staff-placement-directive = | 103 \override Staff.VerticalAxisGroup.outside-staff-placement-directive = |
104 #'right-to-left-greedy | 104 #'right-to-left-greedy |
105 \music | 105 \music |
106 } | 106 } |
LEFT | RIGHT |