]> git.donarmstrong.com Git - lilypond.git/blob - Documentation/snippets/ancient-notation-template----modern-transcription-of-gregorian-music.ly
Run scripts/auxiliar/update-with-convert-ly.sh
[lilypond.git] / Documentation / snippets / ancient-notation-template----modern-transcription-of-gregorian-music.ly
1 % DO NOT EDIT this file manually; it is automatically
2 % generated from Documentation/snippets/new
3 % Make any changes in Documentation/snippets/new/
4 % and then run scripts/auxiliar/makelsr.py
5 %
6 % This file is in the public domain.
7 %% Note: this file works from version 2.15.15
8 \version "2.16.0"
9
10 \header {
11   lsrtags = "vocal-music, ancient-notation, template"
12
13   texidoc = "
14 This example demonstrates how to do modern transcription of Gregorian
15 music. Gregorian music has no measure, no stems; it uses only half and
16 quarter note heads, and special marks, indicating rests of different
17 length.
18
19 "
20   doctitle = "Ancient notation template -- modern transcription of gregorian music"
21 } % begin verbatim
22
23
24 \include "gregorian.ly"
25
26 chant = \relative c' {
27   \set Score.timing = ##f
28   f4 a2 \divisioMinima
29   g4 b a2 f2 \divisioMaior
30   g4( f) f( g) a2 \finalis
31 }
32
33 verba = \lyricmode {
34   Lo -- rem ip -- sum do -- lor sit a -- met
35 }
36
37 \score {
38   \new Staff <<
39     \new Voice = "melody" \chant
40     \new Lyrics = "one" \lyricsto melody \verba
41   >>
42   \layout {
43     \context {
44       \Staff
45       \remove "Time_signature_engraver"
46       \remove "Bar_engraver"
47       \override Stem #'transparent = ##t
48       \override Flag #'transparent = ##t
49     }
50     \context {
51       \Voice
52       \override Stem #'length = #0
53     }
54     \context {
55       \Score
56       barAlways = ##t
57     }
58   }
59 }