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