]> git.donarmstrong.com Git - lilypond.git/blob - Documentation/snippets/new/ancient-notation-template----modern-transcription-of-gregorian-music.ly
Merge remote branch 'origin/master' into release/unstable
[lilypond.git] / Documentation / snippets / new / ancient-notation-template----modern-transcription-of-gregorian-music.ly
1 \version "2.17.30"
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       \hide Stem
40     }
41     \context {
42       \Voice
43       \override Stem.length = #0
44     }
45     \context {
46       \Score
47       barAlways = ##t
48     }
49   }
50 }
51