]> git.donarmstrong.com Git - lilypond.git/blob - Documentation/snippets/ancient-notation-template----modern-transcription-of-gregorian-music.ly
Docs: reorganize documentation directory structure
[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: aea975539ec44fd0f1a8fd25930b88b5ab64b53a
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: 17633f6b8681af86230aa84597fe7561e98c91d6
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   texidoc = "
28 This example demonstrates how to do modern transcription of Gregorian
29 music. Gregorian music has no measure, no stems; it uses only half and
30 quarter note heads, and special marks, indicating rests of different
31 length.
32
33 "
34   doctitle = "Ancient notation template -- modern transcription of gregorian music"
35 } % begin verbatim
36
37 \include "gregorian.ly"
38
39 chant = \relative c' {
40   \set Score.timing = ##f
41   f4 a2 \divisioMinima
42   g4 b a2 f2 \divisioMaior
43   g4( f) f( g) a2 \finalis
44 }
45
46 verba = \lyricmode {
47   Lo -- rem ip -- sum do -- lor sit a -- met
48 }
49
50 \score {
51   \new Staff <<
52     \new Voice = "melody" \chant
53     \new Lyrics = "one" \lyricsto melody \verba
54   >>
55   \layout {
56     \context {
57       \Staff
58       \remove "Time_signature_engraver"
59       \remove "Bar_engraver"
60       \override Stem #'transparent = ##t
61     }
62     \context {
63       \Voice
64       \override Stem #'length = #0
65     }
66     \context {
67       \Score
68       barAlways = ##t
69     }
70   }
71 }
72