]> git.donarmstrong.com Git - lilypond.git/blob - input/lsr/adding-ambitus-per-voice.ly
lilypond-book robustness: ensure EOL at the end of @verbatim
[lilypond.git] / input / lsr / adding-ambitus-per-voice.ly
1 %% Do not edit this file; it is auto-generated from LSR http://lsr.dsi.unimi.it
2 %% This file is in the public domain.
3 \version "2.13.1"
4
5 \header {
6   lsrtags = "pitches, staff-notation, vocal-music"
7
8 %% Translation of GIT committish: 674a5f874c07063ae56d55be25c55fc3b4bdb7bf
9   doctitlees = "Añadir un ámbito por voz"
10   texidoces = "
11 Se puede añadir un ámbito por cada voz. En este caso, el ámbito se
12 debe desplazar manualmente para evitar colisiones.
13
14 "
15 %% Translation of GIT committish: e75f1604a1b866c853dee42dbffcb7800c706a5f
16
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
24   texidoc = "
25 Ambitus can be added per voice. In this case, the ambitus must be moved
26 manually to prevent collisions. 
27
28 "
29   doctitle = "Adding ambitus per voice"
30 } % begin verbatim
31
32 \new Staff <<
33   \new Voice \with {
34     \consists "Ambitus_engraver"
35   } \relative c'' {
36     \override Ambitus #'X-offset = #2.0
37     \voiceOne
38     c4 a d e
39     f1
40   }
41   \new Voice \with {
42     \consists "Ambitus_engraver"
43   } \relative c' {
44     \voiceTwo
45     es4 f g as
46     b1
47   }
48 >>
49