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