]> git.donarmstrong.com Git - lilypond.git/blob - input/lsr/use-square-bracket-at-the-start-of-a-staff-group.ly
Merge branch 'lilypond/translation' of ssh://trettig@git.sv.gnu.org/srv/git/lilypond...
[lilypond.git] / input / lsr / use-square-bracket-at-the-start-of-a-staff-group.ly
1 %% Do not edit this file; it is auto-generated from LSR http://lsr.dsi.unimi.it
2 %% This file is in the public domain.
3 \version "2.11.49"
4
5 \header {
6   lsrtags = "staff-notation, contexts-and-engravers"
7
8   texidoc = "
9 The system start delimiter @code{SystemStartSquare} can be used by
10 setting it explicitly in a @code{StaffGroup} or @code{ChoirStaffGroup}
11 context. 
12
13 "
14   doctitle = "Use square bracket at the start of a staff group"
15 } % begin verbatim
16 \score {
17   \new StaffGroup { << 
18   \set StaffGroup.systemStartDelimiter = #'SystemStartSquare
19     \new Staff { c'4 d' e' f' }
20     \new Staff { c'4 d' e' f' }
21   >> }
22 }