]> git.donarmstrong.com Git - lilypond.git/blob - Documentation/snippets/ancient-notation-template----modern-transcription-of-gregorian-music.ly
Doc: run makelsr.py after adding italian translation of snippets in LM
[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 %% Translation of GIT committish: 4077120c18ac1dc490501b3d7d5886bc93e61a42
11   texidocit = "
12 Questo esempio mostra come realizzare una trascrizione moderna di musica
13 Gregoriana. La musica Gregoriana non ha misure né gambi; utilizza soltanto le
14 teste della minima e della semiminima, e dei segni speciali che indicano pause
15 di diversa lunghezza.
16
17 "
18   doctitleit = "Modello per notazione antica -- trascrizione moderna di musica gregoriana"
19
20   lsrtags = "vocal-music, ancient-notation, template"
21
22
23 %% Translation of GIT committish: 615cbf212fdaf0b220b3330da417d0c3602494f2
24   texidoces = "
25 Este ejemplo muestra cómo hacer una transcripción moderna de canto
26 gregoriano. El canto gregoriano no tiene compás ni plicas; utiliza
27 solamente cabezas de nota de blanca y de negra, y unas marcas
28 especiales que indican silencios de distintas longitudes.
29
30 "
31
32   doctitlees = "Plantilla para notación de música antigua (transcripción moderna de canto gregoriano)"
33
34 %% Translation of GIT committish: 0a868be38a775ecb1ef935b079000cebbc64de40
35
36   texidocde = "
37 Dieses Beispiel zeigt eine moderne Transkription des Gregorianischen
38 Chorals. Hier gibt es keine Takte, keine Notenhälse und es werden nur
39 halbe und Viertelnoten verwendet. Zusätzliche Zeichen zeigen die
40 Länge von Pausen an.
41 "
42
43  doctitlede = "Vorlage für Alte Notation -- moderne Transkription des gregorianischen Chorals"
44
45 %% Translation of GIT committish: bdfe3dc8175a2d7e9ea0800b5b04cfb68fe58a7a
46   texidocfr = "
47 Voici comment vous pourriez transcrire du grégorien.  Pour mémoire, il
48 n'y a en grégorien ni de découpage en mesure, ni de hampe ; seules
49 sont utilisées des têtes de note blanches ou noires, ainsi que des
50 signes spécifiques permettant d'indiquer des silences de différentes durées.
51
52 "
53   doctitlefr = "Exemples de notation ancienne -- transcription moderne de musique grégorienne"
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 \include "gregorian.ly"
66
67 chant = \relative c' {
68   \set Score.timing = ##f
69   f4 a2 \divisioMinima
70   g4 b a2 f2 \divisioMaior
71   g4( f) f( g) a2 \finalis
72 }
73
74 verba = \lyricmode {
75   Lo -- rem ip -- sum do -- lor sit a -- met
76 }
77
78 \score {
79   \new Staff <<
80     \new Voice = "melody" \chant
81     \new Lyrics = "one" \lyricsto melody \verba
82   >>
83   \layout {
84     \context {
85       \Staff
86       \remove "Time_signature_engraver"
87       \remove "Bar_engraver"
88       \override Stem #'transparent = ##t
89     }
90     \context {
91       \Voice
92       \override Stem #'length = #0
93     }
94     \context {
95       \Score
96       barAlways = ##t
97     }
98   }
99 }
100