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