]> git.donarmstrong.com Git - lilypond.git/blob - input/lsr/chant-or-psalms-notation.ly
Merge branch 'master' into lilypond/translation
[lilypond.git] / input / lsr / chant-or-psalms-notation.ly
1 %% Do not edit this file; it is auto-generated from LSR http://lsr.dsi.unimi.it
2 %% This file is in the public domain.
3 \version "2.11.38"
4
5 \header {
6   lsrtags = "rhythms, vocal-music, ancient-notation, contexts-and-engravers"
7  texidoc = "
8 This form of notation is used for the chant of the Psalms, where verses
9 aren't always the same length.
10 " }
11 % begin verbatim
12 stemOn = { \override Staff.Stem #'transparent = ##f }
13 stemOff = { \override Staff.Stem #'transparent = ##t }
14
15 \score {
16         \new Staff \with { \remove "Time_signature_engraver" }
17         {
18                 \key g \minor
19                 \set Score.timing = ##f
20                 \stemOff a'\breve bes'4 g'4
21                 \stemOn a'2 \bar "||"
22                 \stemOff a'\breve g'4 a'4
23                 \stemOn f'2 \bar "||"
24                 \stemOff a'\breve^\markup { \italic flexe }
25                 \stemOn g'2 \bar "||"
26         }
27 }