]> git.donarmstrong.com Git - lilypond.git/blob - Documentation/snippets/ambitus-with-multiple-voices.ly
3b9afd14c86922519637c71377b15f9f08d0bf40
[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: COMMITTISH
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 %% Translation of GIT committish: 6977ddc9a3b63ea810eaecb864269c7d847ccf98
23   doctitlees = "Ámbitos con varias voces"
24   texidoces = "
25 La adición del grabador @code{Ambitus_engraver} al contexto de
26 @code{Staff} crea un solo ámbito por pentagrama, incluso en el caso de
27 pentagramas con varias voces.
28
29 "
30
31
32 %% Translation of GIT committish: 0a868be38a775ecb1ef935b079000cebbc64de40
33   texidocde = "
34 Indem man den @code{Ambitus_engraver} im @code{Staff}-Kontext
35 hinzufügt, erhält man einen einzigen Ambitus pro System, auch in dem
36 Fall, dass mehrere Stimmen sich im gleichen System befinden.
37 "
38   doctitlede = "Ambitus mit vielen Stimmen"
39
40 %% Translation of GIT committish: 4ab2514496ac3d88a9f3121a76f890c97cedcf4e
41   texidocfr = "
42 Si plusieurs voix se trouvent sur une même portée, on peut attribuer le
43 graveur @code{Ambitus_engraver} au contexte @code{Staff} afin d'obtenir
44 l'ambitus de toutes les voix cumulées, non d'une seule des voix actives.
45
46 "
47   doctitlefr = "Ambitus sur plusieurs voix"
48
49
50   texidoc = "
51 Adding the @code{Ambitus_engraver} to the @code{Staff} context creates
52 a single ambitus per staff, even in the case of staves with multiple
53 voices.
54
55 "
56   doctitle = "Ambitus with multiple voices"
57 } % begin verbatim
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