]> git.donarmstrong.com Git - lilypond.git/blob - input/lsr/ancient-notation-template----modern-transcription-of-gregorian-music.ly
Merge master into nested-bookparts
[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.62"
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   texidocde = "
19 Dieses Beispiel zeigt eine moderne Transkription des Gregorianischen 
20 Chorals. Hier gibt es keine Takte, keine Notenhälse und es werden nur 
21 halbe und Viertelnoten verwendet. Zusätzliche Zeichen zeigen die 
22 Länge von Pausen an.
23 "
24
25   texidoc = "
26 This example demonstrates how to do modern transcription of Gregorian
27 music. Gregorian music has no measure, no stems; it uses only half and
28 quarter note heads, and special marks, indicating rests of different
29 length.
30
31 "
32   doctitle = "Ancient notation template -- modern transcription of gregorian music"
33 } % begin verbatim
34 \include "gregorian.ly"
35
36 chant = \relative c' {
37   \set Score.timing = ##f
38   f4 a2 \divisioMinima
39   g4 b a2 f2 \divisioMaior
40   g4( f) f( g) a2 \finalis
41 }
42
43 verba = \lyricmode {
44   Lo -- rem ip -- sum do -- lor sit a -- met
45 }
46
47 \score {
48   \new Staff <<
49     \new Voice = "melody" \chant
50     \new Lyrics = "one" \lyricsto melody \verba
51   >>
52   \layout {
53     \context {
54       \Staff
55       \remove "Time_signature_engraver"
56       \remove "Bar_engraver"
57       \override Stem #'transparent = ##t
58     }
59     \context {
60       \Voice
61       \override Stem #'length = #0
62     }
63     \context {
64       \Score
65       barAlways = ##t
66     }
67   }
68 }