]> git.donarmstrong.com Git - lilypond.git/blob - Documentation/snippets/creating-slurs-across-voices.ly
00acc7d3fcb5f0b200539b5e0ebc0ca393a8daaf
[lilypond.git] / Documentation / snippets / creating-slurs-across-voices.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.39"
5
6 \header {
7   lsrtags = "expressive-marks, keyboards, unfretted-strings"
8
9 %% Translation of GIT committish: 5160eccb26cee0bfd802d844233e4a8d795a1e94
10   texidoces = "
11 En determinadas situaciones es necesario crear ligaduras de
12 expresión entre notas que están en voces distintas.
13
14 La solución es añadir notas invisibles a una de las voces
15 utilizando @code{\\hideNotes}.
16
17 Este ejemplo es el compás 235 de la Chacona de la segunda Partita
18 para violín solo, BWV 1004, de Bach.
19
20 "
21   doctitlees = "Hacer ligaduras entre voces distintas"
22
23   texidoc = "
24 In some situations, it may be necessary to create slurs between notes
25 from different voices.
26
27 The solution is to add invisible notes to one of the voices, using
28 @code{\\hideNotes}.
29
30 This example is measure 235 of the Ciaconna from Bach's 2nd Partita for
31 solo violin, BWV 1004.
32
33 "
34   doctitle = "Creating slurs across voices"
35 } % begin verbatim
36
37 \relative c' {
38   <<
39     {
40       d16( a') s a s a[ s a] s a[ s a]
41     }
42     \\
43     {
44       \slurUp
45       bes,16[ s e](
46       \hideNotes a)
47       \unHideNotes f[(
48       \hideNotes a)
49       \unHideNotes fis](
50       \hideNotes a)
51       \unHideNotes g[(
52       \hideNotes a)
53       \unHideNotes gis](
54       \hideNotes a)
55     }
56   >>
57 }
58