]> git.donarmstrong.com Git - lilypond.git/blob - input/lsr/ancient-notation-template----modern-transcription-of-gregorian-music.ly
Merge branch 'master' of git://git.sv.gnu.org/lilypond
[lilypond.git] / input / lsr / ancient-notation-template----modern-transcription-of-gregorian-music.ly
1 %% Do not edit this file; it is auto-generated from LSR http://lsr.dsi.unimi.it
2 %% This file is in the public domain.
3 %% Tags: ancient-notation, template
4 \version "2.11.35"
5
6 \header { 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 noteheads, and special marks, indicating rests of different
10 length.
11 " }
12 % begin verbatim
13 \include "gregorian-init.ly"
14
15          chant = \relative c' {
16            \set Score.timing = ##f
17            f4 a2 \divisioMinima
18            g4 b a2 f2 \divisioMaior
19            g4( f) f( g) a2 \finalis
20          }
21          
22          verba = \lyricmode {
23            Lo -- rem ip -- sum do -- lor sit a -- met
24          }
25          
26          \score {
27            \new Staff <<
28              \new Voice = "melody" {
29                \chant
30              }
31              \new Lyrics = "one" \lyricsto melody \verba
32            >>
33          
34            \layout {
35              \context {
36                \Staff
37                \remove "Time_signature_engraver"
38                \remove "Bar_engraver"
39                \override Stem #'transparent = ##t
40              }
41              \context {
42                \Voice
43                \override Stem #'length = #0
44              }
45              \context {
46                \Score
47                barAlways = ##t
48              }
49            }
50          }
51