]> git.donarmstrong.com Git - lilypond.git/blob - Documentation/snippets/chant-or-psalms-notation.ly
949ff1034e3529cdd34fb1493ea80e00245dcbdd
[lilypond.git] / Documentation / snippets / chant-or-psalms-notation.ly
1 %% Do not edit this file; it is automatically
2 %% generated from LSR http://lsr.dsi.unimi.it
3 %% This file is in the public domain.
4 \version "2.13.39"
5
6 \header {
7   lsrtags = "rhythms, vocal-music, ancient-notation, contexts-and-engravers"
8
9 %% Translation of GIT committish: a874fda3641c9e02f61be5c41b215b8304b8ed00
10   texidoces = "
11 Este tipo de notación se utiliza para el canto de los Salmos, en
12 que las estrofas no siempre tienen la misma longitud.
13
14 "
15   doctitlees = "Notación de responsos o salmos"
16
17 %% Translation of GIT committish: ab9e3136d78bfaf15cc6d77ed1975d252c3fe506
18
19   texidocde = "
20 Diese Form der Notation wird benutzt für die Notation von Psalmen, in denen
21 die Strophen nicht die gleiche Länge haben.
22
23 "
24   doctitlede = "Psalmennotation"
25
26
27   texidoc = "
28 This form of notation is used for the chant of the Psalms, where verses
29 aren't always the same length.
30
31 "
32   doctitle = "Chant or psalms notation"
33 } % begin verbatim
34
35 stemOn = { \revert Staff.Stem #'transparent }
36 stemOff = { \override Staff.Stem #'transparent = ##t }
37
38 \score {
39   \new Staff \with { \remove "Time_signature_engraver" }
40   {
41     \key g \minor
42     \cadenzaOn
43     \stemOff a'\breve bes'4 g'4
44     \stemOn a'2 \bar "||"
45     \stemOff a'\breve g'4 a'4
46     \stemOn f'2 \bar "||"
47     \stemOff a'\breve^\markup { \italic flexe }
48     \stemOn g'2 \bar "||"
49   }
50 }
51