]> git.donarmstrong.com Git - lilypond.git/blobdiff - Documentation/snippets/using-arpeggiobracket-to-make-divisi-more-visible.ly
Imported Upstream version 2.14.2
[lilypond.git] / Documentation / snippets / using-arpeggiobracket-to-make-divisi-more-visible.ly
diff --git a/Documentation/snippets/using-arpeggiobracket-to-make-divisi-more-visible.ly b/Documentation/snippets/using-arpeggiobracket-to-make-divisi-more-visible.ly
new file mode 100644 (file)
index 0000000..b521d6b
--- /dev/null
@@ -0,0 +1,83 @@
+%% 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 = "expressive-marks, vocal-music"
+
+%% Translation of GIT committish: 70f5f30161f7b804a681cd080274bfcdc9f4fe8c
+  texidoces = "
+El corchete de arpegios @code{arpeggioBracket} se puede usar para
+indicar la división de voces cuando no hay plicas que puedan ofrecer
+esta información. Se suele encontrar en la música coral.
+
+"
+
+  doctitlees = "Uso de arpeggioBracket para hacer más visible un divisi"
+
+
+%% Translation of GIT committish: 27b1197f3bae8512c14d946752cd3e40e7c76016
+
+  texidocde = "
+Das @code{arpeggioBracket}-Klammerobjekt kann benutzt werden, um geteilte
+Stimmen anzuzeigen, wenn keine Hälse diese Information bieten.  Das sieht
+man oft in Chormusik.
+
+"
+  doctitlede = "Arpeggio-Klammern benutzen um geteilte Stimmen besser sichtbar zu machen"
+
+
+%% Translation of GIT committish: c1d5bb448321d688185e0c6b798575d4c325ae80
+  texidocfr = "
+Les crochets d'arpegio (@code{arpeggioBracket}) permettent de mettre en
+évidence les divisions d'un pupitre en l'absence de hampe, comme on le
+voit régulièrement dans les partitions pour chœur.
+
+"
+
+  doctitlefr = "Utilisation d'un arpeggioBracket pour rendre les
+divisions plus évidentes"
+
+
+  texidoc = "
+The @code{arpeggioBracket} can be used to indicate the division of
+voices where there are no stems to provide the information. This is
+often seen in choral music.
+
+"
+  doctitle = "Using arpeggioBracket to make divisi more visible"
+} % begin verbatim
+
+\include "english.ly"
+
+\score {
+  \relative c'' {
+    \key a \major
+    \time 2/2
+    <<
+      \new Voice = "upper"
+      <<
+        { \voiceOne \arpeggioBracket
+          a2( b2
+          <b d>1\arpeggio)
+          <cs e>\arpeggio ~
+          <cs e>4
+        }
+        \addlyrics { \lyricmode { A -- men. } }
+      >>
+      \new Voice = "lower"
+      { \voiceTwo
+        a1 ~
+        a
+        a ~
+        a4 \bar "|."
+      }
+    >>
+  }
+  \layout { ragged-right = ##t }
+}
+