]> git.donarmstrong.com Git - lilypond.git/blob - input/lsr/ancient-notation-template----modern-transcription-of-gregorian-music.ly
Merge commit 'ce4b499'
[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 \version "2.11.38"
4
5 \header {
6   lsrtags = "ancient-notation, template"
7  texidoc = "
8 This example demonstrates how to do modern transcription of Gregorian
9 music. Gregorian music has no measure, no stems; it uses only half and
10 quarter noteheads, and special marks, indicating rests of different
11 length.
12 " }
13 % begin verbatim
14 \include "gregorian-init.ly"
15
16          chant = \relative c' {
17            \set Score.timing = ##f
18            f4 a2 \divisioMinima
19            g4 b a2 f2 \divisioMaior
20            g4( f) f( g) a2 \finalis
21          }
22          
23          verba = \lyricmode {
24            Lo -- rem ip -- sum do -- lor sit a -- met
25          }
26          
27          \score {
28            \new Staff <<
29              \new Voice = "melody" {
30                \chant
31              }
32              \new Lyrics = "one" \lyricsto melody \verba
33            >>
34          
35            \layout {
36              \context {
37                \Staff
38                \remove "Time_signature_engraver"
39                \remove "Bar_engraver"
40                \override Stem #'transparent = ##t
41              }
42              \context {
43                \Voice
44                \override Stem #'length = #0
45              }
46              \context {
47                \Score
48                barAlways = ##t
49              }
50            }
51          }
52