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