]> git.donarmstrong.com Git - lilypond.git/blob - Documentation/snippets/ambitus-with-multiple-voices.ly
Docs: run convert-ly for 2.14.0.
[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: 59caa3adce63114ca7972d18f95d4aadc528ec3d
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: 0a868be38a775ecb1ef935b079000cebbc64de40
23   texidocde = "
24 Indem man den @code{Ambitus_engraver} im @code{Staff}-Kontext
25 hinzufügt, erhält man einen einzigen Ambitus pro System, auch in dem
26 Fall, dass mehrere Stimmen sich im gleichen System befinden.
27 "
28   doctitlede = "Ambitus mit vielen Stimmen"
29
30 %% Translation of GIT committish: 4ab2514496ac3d88a9f3121a76f890c97cedcf4e
31   texidocfr = "
32 Si plusieurs voix se trouvent sur une même portée, on peut attribuer le
33 graveur @code{Ambitus_engraver} au contexte @code{Staff} afin d'obtenir
34 l'ambitus de toutes les voix cumulées, non d'une seule des voix actives.
35
36 "
37   doctitlefr = "Ambitus sur plusieurs voix"
38
39
40   texidoc = "
41 Adding the @code{Ambitus_engraver} to the @code{Staff} context creates
42 a single ambitus per staff, even in the case of staves with multiple
43 voices.
44
45 "
46   doctitle = "Ambitus with multiple voices"
47 } % begin verbatim
48
49 \new Staff \with {
50   \consists "Ambitus_engraver"
51   }
52 <<
53   \new Voice \relative c'' {
54     \voiceOne
55     c4 a d e
56     f1
57   }
58   \new Voice \relative c' {
59     \voiceTwo
60     es4 f g as
61     b1
62   }
63 >>
64
65