]> git.donarmstrong.com Git - lilypond.git/blob - input/regression/braces.ly
Revert "Fixes figuredBassCenterContinuations."
[lilypond.git] / input / regression / braces.ly
1 \version "2.15.6"
2
3 \header{
4   texidoc="
5 Braces can be used to show organ keyboard changes.
6 "
7 }
8
9 \score {
10   <<
11     \new PianoStaff <<
12       { << { d''2~\brace d''~ d'' } \\ { s1 <a d' f'>2\brace a' } >> }
13       \new Dynamics { s1-\markup \bold \upright "G.O." }
14       { f8\brace
15         \once \override Brace #'minimum-brace-height = #1
16         \once \override Brace #'positions = #'(-5.5 . 0)
17         <a' c' e'>\brace-\markup \bold "Pos." a' a' a'2\brace f'\brace f' }
18     >>
19     \new Staff { \clef F R1 d2\brace d }
20   >>
21   \layout {
22     ragged-right = ##t
23     \context {
24       \Score
25       \consists Span_brace_engraver
26       connectBraces = ##t
27     }
28   }
29 }