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