]> git.donarmstrong.com Git - lilypond.git/blob - Documentation/snippets/creating-slurs-across-voices.ly
88e5674ba250d52a8c05d775299415971eacdaaf
[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.2"
8
9 \header {
10   lsrtags = "expressive-marks, keyboards, real-music, unfretted-strings, connecting-notes"
11
12 %% Translation of GIT committish: b482c3e5b56c3841a88d957e0ca12964bd3e64fa
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 %% Translation of GIT committish: f5cfaf8ef4ac347702f554af0944ef0d8396e73a
27   texidocfr = "
28 Dans certaines situations, il peut être nécessaire de lier des notes
29 appartenant à des voix différentes.
30
31 La solution consiste à ajouter une note invisible dans l'une des voix, à
32 l'aide de la commande @code{\\hideNotes}.
33
34 Voici par exemple la mesure 235 de la chaconne de la seconde partita
35 pour violon solo, BWV 1004, de Bach.
36
37 "
38   doctitlefr = "Création d'une liaison entre plusieurs voix"
39
40   texidoc = "
41 In some situations, it may be necessary to create slurs between notes
42 from different voices.
43
44 The solution is to add invisible notes to one of the voices, using
45 @code{\\hideNotes}.
46
47 This example is measure 235 of the Ciaconna from Bach's 2nd Partita for
48 solo violin, BWV 1004.
49
50 "
51   doctitle = "Creating slurs across voices"
52 } % begin verbatim
53
54
55 \relative c' {
56   <<
57     {
58       d16( a') s a s a[ s a] s a[ s a]
59     }
60     \\
61     {
62       \slurUp
63       bes,16[ s e](
64       \hideNotes a)
65       \unHideNotes f[(
66       \hideNotes a)
67       \unHideNotes fis](
68       \hideNotes a)
69       \unHideNotes g[(
70       \hideNotes a)
71       \unHideNotes gis](
72       \hideNotes a)
73     }
74   >>
75 }
76