]> git.donarmstrong.com Git - lilypond.git/blob - Documentation/snippets/use-square-bracket-at-the-start-of-a-staff-group.ly
Update snippets from today's LSR with changed makelsr.py
[lilypond.git] / Documentation / snippets / use-square-bracket-at-the-start-of-a-staff-group.ly
1 %% DO NOT EDIT this file manually; it is automatically
2 %% generated from LSR http://lsr.dsi.unimi.it
3 %% Make any changes in LSR itself, or in Documentation/snippets/new/ ,
4 %% and then run scripts/auxiliar/makelsr.py
5 %%
6 %% This file is in the public domain.
7 \version "2.14.2"
8
9 \header {
10   lsrtags = "staff-notation, contexts-and-engravers"
11
12   texidoc = "
13 The system start delimiter @code{SystemStartSquare} can be used by
14 setting it explicitly in a @code{StaffGroup} or @code{ChoirStaff}
15 context.
16
17 "
18   doctitle = "Use square bracket at the start of a staff group"
19 } % begin verbatim
20
21
22 \score {
23   \new StaffGroup { <<
24   \set StaffGroup.systemStartDelimiter = #'SystemStartSquare
25     \new Staff { c'4 d' e' f' }
26     \new Staff { c'4 d' e' f' }
27   >> }
28 }