]> git.donarmstrong.com Git - lilypond.git/blob - Documentation/snippets/adding-ambitus-per-voice.ly
5d68dac9c2974452038a908ecb5116322f6d8d6e
[lilypond.git] / Documentation / snippets / adding-ambitus-per-voice.ly
1 %% Do not edit this file; it is automatically
2 %% generated from LSR http://lsr.dsi.unimi.it
3 %% This file is in the public domain.
4 \version "2.13.16"
5
6 \header {
7   lsrtags = "pitches, staff-notation, vocal-music"
8
9 %% Translation of GIT committish: 2b0dc29608d6c3f5a03ead4877ae514c647adb74
10   doctitlees = "Añadir un ámbito por voz"
11   texidoces = "
12 Se puede añadir un ámbito por cada voz. En este caso, el ámbito se
13 debe desplazar manualmente para evitar colisiones.
14
15 "
16 %% Translation of GIT committish: 0a868be38a775ecb1ef935b079000cebbc64de40
17 texidocde = "
18 Ambitus können pro Stimme gesetzt werden. In diesem Fall müssen sie
19 manual verschoben werden, um Zusammenstöße zu verhindern.
20
21 "
22 doctitlede = "Ambitus pro Stimme hinzufügen"
23 %% Translation of GIT committish: 58a29969da425eaf424946f4119e601545fb7a7e
24   texidocfr = "
25 L'@code{ambitus} peut être individualisé par voix.  Il faut en pareil
26 cas éviter qu'ils se chevauchent.
27
28 "
29   doctitlefr = "Un ambitus par voix"
30
31
32   texidoc = "
33 Ambitus can be added per voice. In this case, the ambitus must be moved
34 manually to prevent collisions.
35
36 "
37   doctitle = "Adding ambitus per voice"
38 } % begin verbatim
39
40 \new Staff <<
41   \new Voice \with {
42     \consists "Ambitus_engraver"
43   } \relative c'' {
44     \override Ambitus #'X-offset = #2.0
45     \voiceOne
46     c4 a d e
47     f1
48   }
49   \new Voice \with {
50     \consists "Ambitus_engraver"
51   } \relative c' {
52     \voiceTwo
53     es4 f g as
54     b1
55   }
56 >>
57