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