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