]> git.donarmstrong.com Git - lilypond.git/blob - Documentation/snippets/hymn-template.ly
Doc [nl]: Translation update.
[lilypond.git] / Documentation / snippets / hymn-template.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   lsrtags = "vocal-music, template"
11
12 %% Translation of GIT committish: 615cbf212fdaf0b220b3330da417d0c3602494f2
13   texidoces = "
14   Este fragmento de código muestra una forma de preparar un himno cuando
15 cada línea comienza con un compás parcial.  También muestra cómo
16 añadir los versos como texto independiente debajo de la música.
17
18 "
19
20   doctitlees = "Plantilla para himnos"
21
22 %%    Translation of GIT committish: ab9e3136d78bfaf15cc6d77ed1975d252c3fe506
23
24   texidocde = "
25 Dieses Beispiel zeigt eine Möglichkeit, eine Hymnusmelodie zu setzen, in
26 der jede Zeiel mit einem Auftakt beginnt und einem unvollständigen
27 Takt abschließt.  Es zeigt auch, wie man die Strophen als allein stehenden
28 Text unter die Noten hinzufügt.
29
30 "
31   doctitlede = "Hymnus-Vorlage"
32
33
34 %% Translation of GIT committish: 26375d5016d8d180fc914bfd07cf76f4168f2e37
35
36   texidocfr = "
37 Le code ci-dessous illustre la manière d'agencer un cantique liturgique
38 dans lequel chaque ligne débute et se termine par une mesure incomplète.
39 Vous noterez par ailleurs l'affichage des paroles indépendamment de la
40 musique.
41
42 "
43   doctitlefr = "Modèle pour cantique"
44
45   texidoc = "
46 This code shows one way of setting out a hymn tune when each line
47 starts and ends with a partial measure.  It also shows how to add the
48 verses as stand-alone text under the music.
49
50 "
51   doctitle = "Hymn template"
52 } % begin verbatim
53
54 Timeline = {
55   \time 4/4
56   \tempo 4=96
57   \partial 2
58   s2 | s1 | s2 \breathe s2 | s1 | s2 \bar "||" \break
59   s2 | s1 | s2 \breathe s2 | s1 | s2 \bar "||"
60 }
61
62 SopranoMusic = \relative g' {
63   g4 g | g g g g | g g g g | g g g g | g2
64   g4 g | g g g g | g g g g | g g g g | g2
65 }
66
67 AltoMusic = \relative c' {
68   d4 d | d d d d | d d d d | d d d d | d2
69   d4 d | d d d d | d d d d | d d d d | d2
70 }
71
72 TenorMusic = \relative a {
73   b4 b | b b b b | b b b b | b b b b | b2
74   b4 b | b b b b | b b b b | b b b b | b2
75 }
76
77 BassMusic =  \relative g {
78   g4 g | g g g g | g g g g | g g g g | g2
79   g4 g | g g g g | g g g g | g g g g | g2
80 }
81
82 global = {
83  \key g \major
84 }
85
86 \score {  % Start score
87   <<
88     \new PianoStaff <<  % Start pianostaff
89       \new Staff <<  % Start Staff = RH
90         \global
91         \clef "treble"
92         \new Voice = "Soprano" <<  % Start Voice = "Soprano"
93           \Timeline
94           \voiceOne
95           \SopranoMusic
96         >>  % End Voice = "Soprano"
97         \new Voice = "Alto" <<  % Start Voice = "Alto"
98           \Timeline
99           \voiceTwo
100           \AltoMusic
101         >>  % End Voice = "Alto"
102       >>  % End Staff = RH
103       \new Staff <<  % Start Staff = LH
104         \global
105         \clef "bass"
106         \new Voice = "Tenor" <<  % Start Voice = "Tenor"
107           \Timeline
108           \voiceOne
109           \TenorMusic
110         >>  % End Voice = "Tenor"
111         \new Voice = "Bass" <<  % Start Voice = "Bass"
112           \Timeline
113           \voiceTwo
114           \BassMusic
115         >>  % End Voice = "Bass"
116       >>  % End Staff = LH
117     >>  % End pianostaff
118   >>
119 }  % End score
120
121 \markup {
122   \fill-line {
123     ""
124     {
125       \column {
126         \left-align {
127           "This is line one of the first verse"
128           "This is line two of the same"
129           "And here's line three of the first verse"
130           "And the last line of the same"
131         }
132       }
133     }
134     ""
135   }
136 }
137
138 \paper {  % Start paper block
139   indent = 0     % don't indent first system
140   line-width = 130   % shorten line length to suit music
141 }  % End paper block
142