X-Git-Url: https://git.donarmstrong.com/?a=blobdiff_plain;f=Documentation%2Fsnippets%2Fcreating-slurs-across-voices.ly;fp=Documentation%2Fsnippets%2Fcreating-slurs-across-voices.ly;h=30ef2d93ea1af7425be5981c487f22f9bebba9df;hb=941dff9d2a67080e0dd8474f1e70f0c72ace6424;hp=0000000000000000000000000000000000000000;hpb=5a22d6233a39d3164e1ca043244794c268be4ad0;p=lilypond.git diff --git a/Documentation/snippets/creating-slurs-across-voices.ly b/Documentation/snippets/creating-slurs-across-voices.ly new file mode 100644 index 0000000000..30ef2d93ea --- /dev/null +++ b/Documentation/snippets/creating-slurs-across-voices.ly @@ -0,0 +1,61 @@ +%% DO NOT EDIT this file manually; it is automatically +%% generated from LSR http://lsr.dsi.unimi.it +%% Make any changes in LSR itself, or in Documentation/snippets/new/ , +%% and then run scripts/auxiliar/makelsr.py +%% +%% This file is in the public domain. +\version "2.14.0" + +\header { + lsrtags = "expressive-marks, keyboards, unfretted-strings" + +%% Translation of GIT committish: 70f5f30161f7b804a681cd080274bfcdc9f4fe8c + texidoces = " +En determinadas situaciones es necesario crear ligaduras de +expresión entre notas que están en voces distintas. + +La solución es añadir notas invisibles a una de las voces +utilizando @code{\\hideNotes}. + +Este ejemplo es el compás 235 de la Chacona de la segunda Partita +para violín solo, BWV 1004, de Bach. + +" + doctitlees = "Hacer ligaduras entre voces distintas" + + texidoc = " +In some situations, it may be necessary to create slurs between notes +from different voices. + +The solution is to add invisible notes to one of the voices, using +@code{\\hideNotes}. + +This example is measure 235 of the Ciaconna from Bach's 2nd Partita for +solo violin, BWV 1004. + +" + doctitle = "Creating slurs across voices" +} % begin verbatim + +\relative c' { + << + { + d16( a') s a s a[ s a] s a[ s a] + } + \\ + { + \slurUp + bes,16[ s e]( + \hideNotes a) + \unHideNotes f[( + \hideNotes a) + \unHideNotes fis]( + \hideNotes a) + \unHideNotes g[( + \hideNotes a) + \unHideNotes gis]( + \hideNotes a) + } + >> +} +