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