]> git.donarmstrong.com Git - lilypond.git/blob - Documentation/snippets/ancient-notation-template----modern-transcription-of-gregorian-music.ly
2d3858cc0eb2511612a52162cbd29b5e8da8f37b
[lilypond.git] / Documentation / snippets / ancient-notation-template----modern-transcription-of-gregorian-music.ly
1 %% Do not edit this file; it is automatically
2 %% generated from LSR http://lsr.dsi.unimi.it
3 %% This file is in the public domain.
4 \version "2.13.16"
5
6 \header {
7   lsrtags = "ancient-notation, template"
8
9 %% Translation of GIT committish: 2b0dc29608d6c3f5a03ead4877ae514c647adb74
10   texidoces = "
11 Este ejemplo muestra cómo hacer una transcripción moderna de canto
12 gregoriano. El canto gregoriano no tiene compás ni plicas; utiliza
13 solamente cabezas de nota de blanca y de negra, y unas marcas
14 especiales que indican silencios de distintas longitudes.
15
16 "
17
18   doctitlees = "Plantilla para notación de música antigua (transcripción moderna de canto gregoriano)"
19 %% Translation of GIT committish: 0a868be38a775ecb1ef935b079000cebbc64de40
20
21   texidocde = "
22 Dieses Beispiel zeigt eine moderne Transkription des Gregorianischen
23 Chorals. Hier gibt es keine Takte, keine Notenhälse und es werden nur
24 halbe und Viertelnoten verwendet. Zusätzliche Zeichen zeigen die
25 Länge von Pausen an.
26 "
27
28  doctitlede = "Vorlage für Alte Notation -- moderne Transkription des gregorianischen Chorals"
29 %% Translation of GIT committish: bdfe3dc8175a2d7e9ea0800b5b04cfb68fe58a7a
30   texidocfr = "
31 Voici comment vous pourriez transcrire du grégorien.  Pour mémoire, il
32 n'y a en grégorien ni de découpage en mesure, ni de hampe ; seules
33 sont utilisées des têtes de note blanches ou noires, ainsi que des
34 signes spécifiques permettant d'indiquer des silences de différentes durées.
35
36 "
37   doctitlefr = "Exemples de notation ancienne -- transcription moderne de musique grégorienne"
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