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