]> git.donarmstrong.com Git - lilypond.git/blob - Documentation/snippets/ambitus-with-multiple-voices.ly
bf5d8c2e894c33be16c14b292c848e92bade7adf
[lilypond.git] / Documentation / snippets / ambitus-with-multiple-voices.ly
1 %% Do not edit this file; it is automatically
2 %% generated from LSR http://lsr.dsi.unimi.it
3 %% This file is in the public domain.
4 \version "2.13.16"
5
6 \header {
7   lsrtags = "pitches, vocal-music"
8
9 %% Translation of GIT committish: 2b0dc29608d6c3f5a03ead4877ae514c647adb74
10   doctitlees = "Ámbitos con varias voces"
11   texidoces = "
12 La adición del grabador @code{Ambitus_engraver} al contexto de
13 @code{Staff} crea un solo ámbito por pentagrama, incluso en el caso de
14 pentagramas con varias voces.
15
16 "
17
18 %% Translation of GIT committish: 0a868be38a775ecb1ef935b079000cebbc64de40
19   texidocde = "
20 Indem man den @code{Ambitus_engraver} im @code{Staff}-Kontext
21 hinzufügt, erhält man einen einzigen Ambitus pro System, auch in dem
22 Fall, dass mehrere Stimmen sich im gleichen System befinden.
23 "
24   doctitlede = "Ambitus mit vielen Stimmen"
25 %% Translation of GIT committish: 58a29969da425eaf424946f4119e601545fb7a7e
26   texidocfr = "
27 Si plusieurs voix se trouvent sur une même portée, on peut attribuer le
28 graveur @code{Ambitus_engraver} au contexte @code{Staff} afin d'obtenir
29 l'ambitus de toutes les voix cumulées, non d'une seule des voix actives. 
30
31 "
32   doctitlefr = "Ambitus sur plusieurs voix"
33
34
35   texidoc = "
36 Adding the @code{Ambitus_engraver} to the @code{Staff} context creates
37 a single ambitus per staff, even in the case of staves with multiple
38 voices.
39
40 "
41   doctitle = "Ambitus with multiple voices"
42 } % begin verbatim
43
44 \new Staff \with {
45   \consists "Ambitus_engraver"
46   }
47 <<
48   \new Voice \relative c'' {
49     \voiceOne
50     c4 a d e
51     f1
52   }
53   \new Voice \relative c' {
54     \voiceTwo
55     es4 f g as
56     b1
57   }
58 >>
59
60