]> git.donarmstrong.com Git - lilypond.git/blobdiff - Documentation/snippets/chant-or-psalms-notation.ly
resolve merge
[lilypond.git] / Documentation / snippets / chant-or-psalms-notation.ly
diff --git a/Documentation/snippets/chant-or-psalms-notation.ly b/Documentation/snippets/chant-or-psalms-notation.ly
new file mode 100644 (file)
index 0000000..b740e3b
--- /dev/null
@@ -0,0 +1,63 @@
+%% 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 = "rhythms, vocal-music, ancient-notation, contexts-and-engravers"
+
+%% Translation of GIT committish: 70f5f30161f7b804a681cd080274bfcdc9f4fe8c
+  texidoces = "
+Este tipo de notación se utiliza para el canto de los Salmos, en
+que las estrofas no siempre tienen la misma longitud.
+
+"
+  doctitlees = "Notación de responsos o salmos"
+
+%% Translation of GIT committish: ab9e3136d78bfaf15cc6d77ed1975d252c3fe506
+
+  texidocde = "
+Diese Form der Notation wird benutzt für die Notation von Psalmen, in denen
+die Strophen nicht die gleiche Länge haben.
+
+"
+  doctitlede = "Psalmennotation"
+
+
+%% Translation of GIT committish: c1d5bb448321d688185e0c6b798575d4c325ae80
+  texidocfr = "
+Ce style de notation permet d'indiquer la mélodie d'une psalmodie
+lorsque les strophes sont de longueur inégale.
+
+"
+  doctitlefr = "Notation pour psalmodie"
+
+
+  texidoc = "
+This form of notation is used for the chant of the Psalms, where verses
+aren't always the same length.
+
+"
+  doctitle = "Chant or psalms notation"
+} % begin verbatim
+
+stemOn = { \revert Staff.Stem #'transparent }
+stemOff = { \override Staff.Stem #'transparent = ##t }
+
+\score {
+  \new Staff \with { \remove "Time_signature_engraver" }
+  {
+    \key g \minor
+    \cadenzaOn
+    \stemOff a'\breve bes'4 g'4
+    \stemOn a'2 \bar "||"
+    \stemOff a'\breve g'4 a'4
+    \stemOn f'2 \bar "||"
+    \stemOff a'\breve^\markup { \italic flexe }
+    \stemOn g'2 \bar "||"
+  }
+}
+