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