]> git.donarmstrong.com Git - lilypond.git/blob - Documentation/snippets/ambitus-with-multiple-voices.ly
f11c48dc0f8e5fe51fc749ac6810850123b87a5a
[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.39"
5
6 \header {
7   lsrtags = "pitches, vocal-music"
8
9 %% Translation of GIT committish: 5160eccb26cee0bfd802d844233e4a8d795a1e94
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
19 %% Translation of GIT committish: 0a868be38a775ecb1ef935b079000cebbc64de40
20   texidocde = "
21 Indem man den @code{Ambitus_engraver} im @code{Staff}-Kontext
22 hinzufügt, erhält man einen einzigen Ambitus pro System, auch in dem
23 Fall, dass mehrere Stimmen sich im gleichen System befinden.
24 "
25   doctitlede = "Ambitus mit vielen Stimmen"
26
27 %% Translation of GIT committish: 4ab2514496ac3d88a9f3121a76f890c97cedcf4e
28   texidocfr = "
29 Si plusieurs voix se trouvent sur une même portée, on peut attribuer le
30 graveur @code{Ambitus_engraver} au contexte @code{Staff} afin d'obtenir
31 l'ambitus de toutes les voix cumulées, non d'une seule des voix actives.
32
33 "
34   doctitlefr = "Ambitus sur plusieurs voix"
35
36
37   texidoc = "
38 Adding the @code{Ambitus_engraver} to the @code{Staff} context creates
39 a single ambitus per staff, even in the case of staves with multiple
40 voices.
41
42 "
43   doctitle = "Ambitus with multiple voices"
44 } % begin verbatim
45
46 \new Staff \with {
47   \consists "Ambitus_engraver"
48   }
49 <<
50   \new Voice \relative c'' {
51     \voiceOne
52     c4 a d e
53     f1
54   }
55   \new Voice \relative c' {
56     \voiceTwo
57     es4 f g as
58     b1
59   }
60 >>
61
62