]> git.donarmstrong.com Git - lilypond.git/blob - Documentation/snippets/chant-or-psalms-notation.ly
Doc: Update LSR.
[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.16"
5
6 \header {
7   lsrtags = "rhythms, vocal-music, ancient-notation, contexts-and-engravers"
8
9 %% Translation of GIT committish: d2119a9e5e951c6ae850322f41444ac98d1ed492
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   texidoc = "
18 This form of notation is used for the chant of the Psalms, where verses
19 aren't always the same length.
20
21 "
22   doctitle = "Chant or psalms notation"
23 } % begin verbatim
24
25 stemOn = { \revert Staff.Stem #'transparent }
26 stemOff = { \override Staff.Stem #'transparent = ##t }
27
28 \score {
29   \new Staff \with { \remove "Time_signature_engraver" }
30   {
31     \key g \minor
32     \cadenzaOn
33     \stemOff a'\breve bes'4 g'4
34     \stemOn a'2 \bar "||"
35     \stemOff a'\breve g'4 a'4
36     \stemOn f'2 \bar "||"
37     \stemOff a'\breve^\markup { \italic flexe }
38     \stemOn g'2 \bar "||"
39   }
40 }
41