]> git.donarmstrong.com Git - lilypond.git/blob - Documentation/snippets/ancient-notation-template----modern-transcription-of-gregorian-music.ly
Doc-es: run makelsr.
[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
24 %% Translation of GIT committish: 615cbf212fdaf0b220b3330da417d0c3602494f2
25   texidoces = "
26 Este ejemplo muestra cómo hacer una transcripción moderna de canto
27 gregoriano. El canto gregoriano no tiene compás ni plicas; utiliza
28 solamente cabezas de nota de blanca y de negra, y unas marcas
29 especiales que indican silencios de distintas longitudes.
30
31 "
32
33   doctitlees = "Plantilla para notación de música antigua (transcripción moderna de canto gregoriano)"
34
35 %% Translation of GIT committish: 0a868be38a775ecb1ef935b079000cebbc64de40
36
37   texidocde = "
38 Dieses Beispiel zeigt eine moderne Transkription des Gregorianischen
39 Chorals. Hier gibt es keine Takte, keine Notenhälse und es werden nur
40 halbe und Viertelnoten verwendet. Zusätzliche Zeichen zeigen die
41 Länge von Pausen an.
42 "
43
44  doctitlede = "Vorlage für Alte Notation -- moderne Transkription des gregorianischen Chorals"
45
46 %% Translation of GIT committish: bdfe3dc8175a2d7e9ea0800b5b04cfb68fe58a7a
47   texidocfr = "
48 Voici comment vous pourriez transcrire du grégorien.  Pour mémoire, il
49 n'y a en grégorien ni de découpage en mesure, ni de hampe ; seules
50 sont utilisées des têtes de note blanches ou noires, ainsi que des
51 signes spécifiques permettant d'indiquer des silences de différentes durées.
52
53 "
54   doctitlefr = "Exemples de notation ancienne -- transcription moderne de musique grégorienne"
55
56   texidoc = "
57 This example demonstrates how to do modern transcription of Gregorian
58 music. Gregorian music has no measure, no stems; it uses only half and
59 quarter note heads, and special marks, indicating rests of different
60 length.
61
62 "
63   doctitle = "Ancient notation template -- modern transcription of gregorian music"
64 } % begin verbatim
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     }
91     \context {
92       \Voice
93       \override Stem #'length = #0
94     }
95     \context {
96       \Score
97       barAlways = ##t
98     }
99   }
100 }
101