]> git.donarmstrong.com Git - lilypond.git/blob - Documentation/snippets/ancient-notation-template----modern-transcription-of-gregorian-music.ly
e43504de28ef93fe112dc983e7018997f6b8d854
[lilypond.git] / Documentation / snippets / ancient-notation-template----modern-transcription-of-gregorian-music.ly
1 %% Do not edit this file; it is automatically
2 %% generated from LSR http://lsr.dsi.unimi.it
3 %% This file is in the public domain.
4 \version "2.13.16"
5
6 \header {
7   lsrtags = "ancient-notation, template"
8
9 %% Translation of GIT committish: 00ef2ac3dd16e21c9ffdffaa4d6d043a3f1a76e6
10   texidoces = "
11 Este ejemplo muestra cómo hacer una transcripción moderna de canto
12 gregoriano. El canto gregoriano no tiene compás ni plicas; utiliza
13 solamente cabezas de nota de blanca y de negra, y unas marcas
14 especiales que indican silencios de distintas longitudes.
15
16 "
17
18   doctitlees = "Plantilla para notación de música antigua (transcripción moderna de canto gregoriano)"
19
20 %% Translation of GIT committish: d96023d8792c8af202c7cb8508010c0d3648899d
21
22   texidocde = "
23 Dieses Beispiel zeigt eine moderne Transkription des Gregorianischen
24 Chorals. Hier gibt es keine Takte, keine Notenhälse und es werden nur
25 halbe und Viertelnoten verwendet. Zusätzliche Zeichen zeigen die
26 Länge von Pausen an.
27 "
28
29  doctitlede = "Vorlage für Alte Notation -- moderne Transkription des gregorianischen Chorals"
30
31 %% Translation of GIT committish: 892286cbfdbe89420b8181975032ea975e79d2f5
32   texidocfr = "
33 Voici comment vous pourriez transcrire du grégorien.  Pour mémoire, il
34 n'y a en grégorien ni de découpage en mesure, ni de hampe ; seules
35 sont utilisées des têtes de note blanches ou noires, ainsi que des
36 signes spécifiques permettant d'indiquer des silences de différentes durées.
37
38 "
39   doctitlefr = "Exemples de notation ancienne -- transcription moderne de musique grégorienne"
40
41   texidoc = "
42 This example demonstrates how to do modern transcription of Gregorian
43 music. Gregorian music has no measure, no stems; it uses only half and
44 quarter note heads, and special marks, indicating rests of different
45 length.
46
47 "
48   doctitle = "Ancient notation template -- modern transcription of gregorian music"
49 } % begin verbatim
50
51 \include "gregorian.ly"
52
53 chant = \relative c' {
54   \set Score.timing = ##f
55   f4 a2 \divisioMinima
56   g4 b a2 f2 \divisioMaior
57   g4( f) f( g) a2 \finalis
58 }
59
60 verba = \lyricmode {
61   Lo -- rem ip -- sum do -- lor sit a -- met
62 }
63
64 \score {
65   \new Staff <<
66     \new Voice = "melody" \chant
67     \new Lyrics = "one" \lyricsto melody \verba
68   >>
69   \layout {
70     \context {
71       \Staff
72       \remove "Time_signature_engraver"
73       \remove "Bar_engraver"
74       \override Stem #'transparent = ##t
75     }
76     \context {
77       \Voice
78       \override Stem #'length = #0
79     }
80     \context {
81       \Score
82       barAlways = ##t
83     }
84   }
85 }
86