]> git.donarmstrong.com Git - lilypond.git/blob - Documentation/snippets/ancient-notation-template----modern-transcription-of-gregorian-music.ly
Fixes all once-Stem-now-Flag properties in the docs.
[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: 2d548a99cb9dba80f2ff035582009477cd37eceb
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: 514674cb00c18629242dfcde0c1a4976758adc56
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: bdfe3dc8175a2d7e9ea0800b5b04cfb68fe58a7a
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 ; 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 %% Translation of GIT committish: 2d548a99cb9dba80f2ff035582009477cd37eceb
56   texidoces = "
57 Este ejemplo muestra cómo hacer una transcripción moderna de canto
58 gregoriano. El canto gregoriano no tiene compás ni plicas; utiliza
59 solamente cabezas de nota de blanca y de negra, y unas marcas
60 especiales que indican silencios de distintas longitudes.
61
62 "
63
64   doctitlees = "Plantilla para notación de música antigua (transcripción moderna de canto gregoriano)"
65
66 %% Translation of GIT committish: 514674cb00c18629242dfcde0c1a4976758adc56
67   texidocit = "
68 Questo esempio mostra come realizzare una trascrizione moderna di musica
69 gregoriana. La musica gregoriana non presenta suddivisione in misure né gambi;
70 utilizza soltanto le teste della minima e della semiminima, e dei segni
71 appositi che indicano pause di diversa lunghezza.
72
73 "
74   doctitleit = "Modello per notazione antica -- trascrizione moderna di musica gregoriana"
75
76 %% Translation of GIT committish: 0a868be38a775ecb1ef935b079000cebbc64de40
77
78   texidocde = "
79 Dieses Beispiel zeigt eine moderne Transkription des Gregorianischen
80 Chorals. Hier gibt es keine Takte, keine Notenhälse und es werden nur
81 halbe und Viertelnoten verwendet. Zusätzliche Zeichen zeigen die
82 Länge von Pausen an.
83 "
84
85  doctitlede = "Vorlage für Alte Notation -- moderne Transkription des gregorianischen Chorals"
86
87 %% Translation of GIT committish: bdfe3dc8175a2d7e9ea0800b5b04cfb68fe58a7a
88   texidocfr = "
89 Voici comment vous pourriez transcrire du grégorien.  Pour mémoire, il
90 n'y a en grégorien ni de découpage en mesure, ni de hampe ; seules
91 sont utilisées des têtes de note blanches ou noires, ainsi que des
92 signes spécifiques permettant d'indiquer des silences de différentes durées.
93
94 "
95   doctitlefr = "Exemples de notation ancienne -- transcription moderne de musique grégorienne"
96
97   texidoc = "
98 This example demonstrates how to do modern transcription of Gregorian
99 music. Gregorian music has no measure, no stems; it uses only half and
100 quarter note heads, and special marks, indicating rests of different
101 length.
102
103 "
104   doctitle = "Ancient notation template -- modern transcription of gregorian music"
105 } % begin verbatim
106
107 \include "gregorian.ly"
108
109 chant = \relative c' {
110   \set Score.timing = ##f
111   f4 a2 \divisioMinima
112   g4 b a2 f2 \divisioMaior
113   g4( f) f( g) a2 \finalis
114 } % begin verbatim
115
116
117 verba = \lyricmode {
118   Lo -- rem ip -- sum do -- lor sit a -- met
119 }
120
121 \score {
122   \new Staff <<
123     \new Voice = "melody" \chant
124     \new Lyrics = "one" \lyricsto melody \verba
125   >>
126   \layout {
127     \context {
128       \Staff
129       \remove "Time_signature_engraver"
130       \remove "Bar_engraver"
131       \override Stem #'transparent = ##t
132       \override Flag #'transparent = ##t
133     }
134     \context {
135       \Voice
136       \override Stem #'length = #0
137     }
138     \context {
139       \Score
140       barAlways = ##t
141     }
142   }
143 }
144