]> git.donarmstrong.com Git - lilypond.git/blob - Documentation/snippets/ambitus-with-multiple-voices.ly
64ba9dd36d17174a02eb036e27a594581042cfef
[lilypond.git] / Documentation / snippets / ambitus-with-multiple-voices.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.2"
8
9 \header {
10   lsrtags = "pitches, vocal-music"
11
12 %% Translation of GIT committish: b482c3e5b56c3841a88d957e0ca12964bd3e64fa
13   doctitlees = "Ámbitos con varias voces"
14   texidoces = "
15 La adición del grabador @code{Ambitus_engraver} al contexto de
16 @code{Staff} crea un solo ámbito por pentagrama, incluso en el caso de
17 pentagramas con varias voces.
18
19 "
20
21
22 %% Translation of GIT committish: 6ae36b6f8a7cf2df5f4e46c3c06820fccd9f35e1
23   texidocit = "
24 Se si aggiunge l'incisore @code{Ambitus_engraver} al contesto @code{Staff} viene
25 creato un solo ambitus per il rigo, anche nel caso di righi che hanno più
26 voci.
27
28 "
29   doctitleit = "Ambitus su più voci"
30
31 %% Translation of GIT committish: 0a868be38a775ecb1ef935b079000cebbc64de40
32   texidocde = "
33 Indem man den @code{Ambitus_engraver} im @code{Staff}-Kontext
34 hinzufügt, erhält man einen einzigen Ambitus pro System, auch in dem
35 Fall, dass mehrere Stimmen sich im gleichen System befinden.
36 "
37   doctitlede = "Ambitus mit vielen Stimmen"
38
39 %% Translation of GIT committish: 4ab2514496ac3d88a9f3121a76f890c97cedcf4e
40   texidocfr = "
41 Si plusieurs voix se trouvent sur une même portée, on peut attribuer le
42 graveur @code{Ambitus_engraver} au contexte @code{Staff} afin d'obtenir
43 l'ambitus de toutes les voix cumulées, non d'une seule des voix actives.
44
45 "
46   doctitlefr = "Ambitus sur plusieurs voix"
47
48
49   texidoc = "
50 Adding the @code{Ambitus_engraver} to the @code{Staff} context creates
51 a single ambitus per staff, even in the case of staves with multiple
52 voices.
53
54 "
55   doctitle = "Ambitus with multiple voices"
56 } % begin verbatim
57
58
59 \new Staff \with {
60   \consists "Ambitus_engraver"
61   }
62 <<
63   \new Voice \relative c'' {
64     \voiceOne
65     c4 a d e
66     f1
67   }
68   \new Voice \relative c' {
69     \voiceTwo
70     es4 f g as
71     b1
72   }
73 >>
74
75