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