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