]> git.donarmstrong.com Git - lilypond.git/blob - input/bugs/braces.ly
patch::: 1.5.7.jcn1
[lilypond.git] / input / bugs / braces.ly
1 \version "1.3.148"
2
3
4 \header {
5 texidoc = "Braces at different sizes don't attach exactly to the staffs.
6 Previously, some braces were too small, while others were too big; this was
7 apparently caused by dvips + mf rounding.  Now, braces are just a bit
8 too big."
9 }
10
11 \include "paper11.ly"
12 \paper { linewidth = -1.0 }
13
14 \score {
15   \context GrandStaff <
16     \context Staff = a \notes c''1
17     \context Staff = b \notes c''1
18   >
19 }
20
21
22 \include "paper13.ly"
23 \paper { linewidth = -1.0 }
24
25 \score {
26   \context GrandStaff <
27     \context Staff = a \notes c''1
28     \context Staff = b \notes c''1
29   >
30   \paper {
31     \translator {
32       \GrandStaffContext
33       SystemStartDelimiter \override #'weird = #-5
34     }
35   }
36 }
37
38
39 \include "paper16.ly"
40 \paper { linewidth = -1.0 }
41
42 \score {
43   \context GrandStaff <
44     \context Staff = a \notes c''1
45     \context Staff = b \notes c''1
46   >
47   \paper {
48     \translator {
49       \GrandStaffContext
50       SystemStartDelimiter \override #'weird = #5
51     }
52   }
53 }
54
55
56 \include "paper20.ly"
57 \paper { linewidth = -1.0 }
58
59 \score {
60   \context GrandStaff <
61     \context Staff = a \notes c''1
62     \context Staff = b \notes c''1
63   >
64   \paper {
65     \translator {
66       \GrandStaffContext
67       SystemStartDelimiter \override #'weird = #-7
68     }
69   }
70 }
71
72
73 \include "paper26.ly"
74 \paper { linewidth = -1.0 }
75
76 \score {
77   \context GrandStaff <
78     \context Staff = a \notes c''1
79     \context Staff = b \notes c''1
80     \context Staff = c \notes c''1
81     \context Staff = d \notes c''1
82   >
83 }