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