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