]> git.donarmstrong.com Git - lilypond.git/blob - Documentation/snippets/ancient-notation-template----modern-transcription-of-gregorian-music.ly
Docs: update snippets locally
[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   lsrtags = "ancient-notation, template"
7
8 %% Translation of GIT committish: b2d4318d6c53df8469dfa4da09b27c15a374d0ca
9   texidoces = "
10 Este ejemplo muestra cómo hacer una transcripción moderna de canto
11 gregoriano. El canto gregoriano no tiene compás ni plicas; utiliza
12 solamente cabezas de nota de blanca y de negra, y unas marcas
13 especiales que indican silencios de distintas longitudes.
14
15 "
16
17   doctitlees = "Plantilla para notación de música antigua (transcripción moderna de canto gregoriano)"
18 %% Translation of GIT committish: d96023d8792c8af202c7cb8508010c0d3648899d
19   
20   texidocde = "
21 Dieses Beispiel zeigt eine moderne Transkription des Gregorianischen 
22 Chorals. Hier gibt es keine Takte, keine Notenhälse und es werden nur 
23 halbe und Viertelnoten verwendet. Zusätzliche Zeichen zeigen die 
24 Länge von Pausen an.
25 "
26
27  doctitlede = "Vorlage für Alte Notation -- moderne Transkription des gregorianischen Chorals"
28
29   texidoc = "
30 This example demonstrates how to do modern transcription of Gregorian
31 music. Gregorian music has no measure, no stems; it uses only half and
32 quarter note heads, and special marks, indicating rests of different
33 length.
34
35 "
36   doctitle = "Ancient notation template -- modern transcription of gregorian music"
37 } % begin verbatim
38
39 \include "gregorian.ly"
40
41 chant = \relative c' {
42   \set Score.timing = ##f
43   f4 a2 \divisioMinima
44   g4 b a2 f2 \divisioMaior
45   g4( f) f( g) a2 \finalis
46 }
47
48 verba = \lyricmode {
49   Lo -- rem ip -- sum do -- lor sit a -- met
50 }
51
52 \score {
53   \new Staff <<
54     \new Voice = "melody" \chant
55     \new Lyrics = "one" \lyricsto melody \verba
56   >>
57   \layout {
58     \context {
59       \Staff
60       \remove "Time_signature_engraver"
61       \remove "Bar_engraver"
62       \override Stem #'transparent = ##t
63     }
64     \context {
65       \Voice
66       \override Stem #'length = #0
67     }
68     \context {
69       \Score
70       barAlways = ##t
71     }
72   }
73 }
74