]> git.donarmstrong.com Git - lilypond.git/blob - Documentation/snippets/adding-ambitus-per-voice.ly
aed57c72f4bebdfdd593a4b61615a7174ded2673
[lilypond.git] / Documentation / snippets / adding-ambitus-per-voice.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 L'ambitus può essere specificato per voce. In tal caso occorre
13 spostarlo manualmente per evitare collisioni.
14
15 "
16   doctitleit = "Un ambitus per voce"
17
18   lsrtags = "pitches, staff-notation, vocal-music"
19
20
21
22 %% Translation of GIT committish: 6977ddc9a3b63ea810eaecb864269c7d847ccf98
23   doctitlees = "Añadir un ámbito por voz"
24   texidoces = "
25 Se puede añadir un ámbito por cada voz. En este caso, el ámbito se
26 debe desplazar manualmente para evitar colisiones.
27
28 "
29
30 %% Translation of GIT committish: 0a868be38a775ecb1ef935b079000cebbc64de40
31 texidocde = "
32 Ambitus können pro Stimme gesetzt werden. In diesem Fall müssen sie
33 manuell verschoben werden, um Zusammenstöße zu verhindern.
34
35 "
36 doctitlede = "Ambitus pro Stimme hinzufügen"
37
38 %% Translation of GIT committish: 58a29969da425eaf424946f4119e601545fb7a7e
39   texidocfr = "
40 L'@code{ambitus} peut être individualisé par voix.  Il faut en pareil
41 cas éviter qu'ils se chevauchent.
42
43 "
44   doctitlefr = "Un ambitus par voix"
45
46
47   texidoc = "
48 Ambitus can be added per voice. In this case, the ambitus must be moved
49 manually to prevent collisions.
50
51 "
52   doctitle = "Adding ambitus per voice"
53 } % begin verbatim
54
55 \new Staff <<
56   \new Voice \with {
57     \consists "Ambitus_engraver"
58   } \relative c'' {
59     \override Ambitus #'X-offset = #2.0
60     \voiceOne
61     c4 a d e
62     f1
63   }
64   \new Voice \with {
65     \consists "Ambitus_engraver"
66   } \relative c' {
67     \voiceTwo
68     es4 f g as
69     b1
70   }
71 >>
72