]> git.donarmstrong.com Git - lilypond.git/blob - input/lsr/ancient-notation-template----modern-transcription-of-gregorian-music.ly
Merge branch 'master' into beaming
[lilypond.git] / input / lsr / ancient-notation-template----modern-transcription-of-gregorian-music.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.48"
4
5 \header {
6   lsrtags = "ancient-notation, template"
7
8   texidoc = "
9 This example demonstrates how to do modern transcription of Gregorian
10 music. Gregorian music has no measure, no stems; it uses only half and
11 quarter note heads, and special marks, indicating rests of different
12 length.
13
14 "
15   doctitle = "Ancient notation template -- modern transcription of gregorian music"
16 } % begin verbatim
17 \include "gregorian-init.ly"
18
19 chant = \relative c' {
20   \set Score.timing = ##f
21   f4 a2 \divisioMinima
22   g4 b a2 f2 \divisioMaior
23   g4( f) f( g) a2 \finalis
24 }
25
26 verba = \lyricmode {
27   Lo -- rem ip -- sum do -- lor sit a -- met
28 }
29
30 \score {
31   \new Staff <<
32     \new Voice = "melody" \chant
33     \new Lyrics = "one" \lyricsto melody \verba
34   >>
35   \layout {
36     \context {
37       \Staff
38       \remove "Time_signature_engraver"
39       \remove "Bar_engraver"
40       \override Stem #'transparent = ##t
41     }
42     \context {
43       \Voice
44       \override Stem #'length = #0
45     }
46     \context {
47       \Score
48       barAlways = ##t
49     }
50   }
51 }