X-Git-Url: https://git.donarmstrong.com/?a=blobdiff_plain;f=Documentation%2Fsnippets%2Fuse-square-bracket-at-the-start-of-a-staff-group.ly;fp=Documentation%2Fsnippets%2Fuse-square-bracket-at-the-start-of-a-staff-group.ly;h=4bb24a1926217a06577dbcce2e35979fef5d819d;hb=941dff9d2a67080e0dd8474f1e70f0c72ace6424;hp=0000000000000000000000000000000000000000;hpb=5a22d6233a39d3164e1ca043244794c268be4ad0;p=lilypond.git diff --git a/Documentation/snippets/use-square-bracket-at-the-start-of-a-staff-group.ly b/Documentation/snippets/use-square-bracket-at-the-start-of-a-staff-group.ly new file mode 100644 index 0000000000..4bb24a1926 --- /dev/null +++ b/Documentation/snippets/use-square-bracket-at-the-start-of-a-staff-group.ly @@ -0,0 +1,58 @@ +%% DO NOT EDIT this file manually; it is automatically +%% generated from LSR http://lsr.dsi.unimi.it +%% Make any changes in LSR itself, or in Documentation/snippets/new/ , +%% and then run scripts/auxiliar/makelsr.py +%% +%% This file is in the public domain. +\version "2.14.0" + +\header { + lsrtags = "staff-notation, contexts-and-engravers" + +%% Translation of GIT committish: 70f5f30161f7b804a681cd080274bfcdc9f4fe8c + texidoces = " +Se puede usar el delimitador de comienzo de un sistema +@code{SystemStartSquare} estableciéndolo explícitamente dentro de +un contexto @code{StaffGroup} o @code{ChoirStaffGroup}. + +" + doctitlees = "Uso del corchete recto al comienzo de un grupo de pentagramas" + + +%% Translation of GIT committish: 0a868be38a775ecb1ef935b079000cebbc64de40 + texidocde = " +Die Klammer zu Beginn von Systemgruppen kann auch in eine eckige Klammer +(@code{SystemStartSquare}) umgewandelt werden, wenn man sie explizit +im @code{StaffGroup}- oder @code{ChoirStaffGroup}-Kontext setzt. + +" + doctitlede = "Eine eckige Klammer zu Beginn von Systemgruppen benutzen" + +%% Translation of GIT committish: 4ab2514496ac3d88a9f3121a76f890c97cedcf4e + texidocfr = " +Un regroupement de portées sera indiqué par un simple rectangle +-- @code{SystemStartSquare} -- en début de ligne dès lors que vous le +mentionnerez explicitement au sein d'un contexte @code{StaffGroup} ou +@code{ChoirStaffGroup}. + +" + doctitlefr = "Indication de regroupement de portées par un rectangle" + + + texidoc = " +The system start delimiter @code{SystemStartSquare} can be used by +setting it explicitly in a @code{StaffGroup} or @code{ChoirStaffGroup} +context. + +" + doctitle = "Use square bracket at the start of a staff group" +} % begin verbatim + +\score { + \new StaffGroup { << + \set StaffGroup.systemStartDelimiter = #'SystemStartSquare + \new Staff { c'4 d' e' f' } + \new Staff { c'4 d' e' f' } + >> } +} +