]> git.donarmstrong.com Git - lilypond.git/blob - input/lsr/ancient-notation-template----modern-transcription-of-gregorian-music.ly
7ce54b33e9c267ae8bc9f5304a37523feeaa9a9d
[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.57"
4
5 \header {
6   lsrtags = "ancient-notation, template"
7
8   texidoces = "
9 Este ejemplo muestra cómo hacer una transcripción moderna de Canto
10 Gregoriano. El Canto Gregoriano no tiene compás ni plicas; utiliza
11 solamente cabezas de nota de blanca y de negra, y unas marcas
12 especiales que indican silencios de distintas longitudes.
13
14 "
15
16   doctitlees = "Plantilla para notación de música antigua (transcripción moderna de Canto Gregoriano)"
17
18   texidoc = "
19 This example demonstrates how to do modern transcription of Gregorian
20 music. Gregorian music has no measure, no stems; it uses only half and
21 quarter note heads, and special marks, indicating rests of different
22 length.
23
24 "
25   doctitle = "Ancient notation template -- modern transcription of gregorian music"
26 } % begin verbatim
27 \include "gregorian-init.ly"
28
29 chant = \relative c' {
30   \set Score.timing = ##f
31   f4 a2 \divisioMinima
32   g4 b a2 f2 \divisioMaior
33   g4( f) f( g) a2 \finalis
34 }
35
36 verba = \lyricmode {
37   Lo -- rem ip -- sum do -- lor sit a -- met
38 }
39
40 \score {
41   \new Staff <<
42     \new Voice = "melody" \chant
43     \new Lyrics = "one" \lyricsto melody \verba
44   >>
45   \layout {
46     \context {
47       \Staff
48       \remove "Time_signature_engraver"
49       \remove "Bar_engraver"
50       \override Stem #'transparent = ##t
51     }
52     \context {
53       \Voice
54       \override Stem #'length = #0
55     }
56     \context {
57       \Score
58       barAlways = ##t
59     }
60   }
61 }