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