]> git.donarmstrong.com Git - lilypond.git/blob - Documentation/snippets/ancient-notation-template----modern-transcription-of-gregorian-music.ly
Include `freetype.hh' where appropriate.
[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.17.20
8 \version "2.17.30"
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       \hide Stem
48     }
49     \context {
50       \Voice
51       \override Stem.length = #0
52     }
53     \context {
54       \Score
55       barAlways = ##t
56     }
57   }
58 }