]> git.donarmstrong.com Git - lilypond.git/blobdiff - Documentation/snippets/use-square-bracket-at-the-start-of-a-staff-group.ly
resolve merge
[lilypond.git] / Documentation / snippets / use-square-bracket-at-the-start-of-a-staff-group.ly
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 (file)
index 0000000..4bb24a1
--- /dev/null
@@ -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' }
+  >> }
+}
+