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