]> git.donarmstrong.com Git - lilypond.git/blob - input/regression/bar-lines.ly
Imported Upstream version 2.16.0
[lilypond.git] / input / regression / bar-lines.ly
1 \version "2.16.0"
2
3 \header { texidoc = "Various types of bar lines can be drawn.
4
5 The dashes in a dashed bar line covers staff lines exactly. Dashed
6 barlines between staves start and end on a half dash precisely.
7
8 The dots in a dotted bar line are in spaces.
9
10 A thick bar line is created by \bar \".\", which is consistent
11 with e.g. \bar \"|.\"
12
13 A ticked bar line is a short line of the same length as a staff
14 space, centered on the top-most barline.
15
16 " }
17
18 \relative \new StaffGroup <<
19   \new Staff = "1" {
20     c2 \bar "dashed" c
21     s1
22     c2 \bar ":" c
23     s1
24     c2 \bar "." c
25     s1
26     c2 \bar "'" c
27   }
28   \new Staff = "2" {
29     c2 c
30     s1
31     c2 c
32     s1
33     c2 c
34     s1
35     c2 c
36   }
37 >>
38