]> 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://jomand@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.38"
4
5 \header {
6   lsrtags = "staff-notation, contexts-and-engravers"
7  texidoc = "
8 The system start delimiter @code{SystemStartSquare} can be used by
9 setting it explicitly in a @code{StaffGroup} or @code{ChoirStaffGroup}
10 context. 
11 " }
12 % begin verbatim
13 \score {
14   \new StaffGroup { << 
15   \set StaffGroup.systemStartDelimiter = #'SystemStartSquare
16     \new Staff { c'4 d' e' f' }
17     \new Staff { c'4 d' e' f' }
18   >> }
19 }