X-Git-Url: https://git.donarmstrong.com/?a=blobdiff_plain;f=input%2Flsr%2Fcreating-slurs-across-voices.ly;h=02b4cab45bbbbadbea26b2f0d17c520b868573ba;hb=d664f5a7153ec2b1a1c4c9fba2d2174bf3140695;hp=9ee396c97f5d7afbc6f2b7f7b542905541265f80;hpb=010306a380d65da3494bed6d6a0824701b69496b;p=lilypond.git diff --git a/input/lsr/creating-slurs-across-voices.ly b/input/lsr/creating-slurs-across-voices.ly index 9ee396c97f..02b4cab45b 100644 --- a/input/lsr/creating-slurs-across-voices.ly +++ b/input/lsr/creating-slurs-across-voices.ly @@ -1,26 +1,53 @@ %% Do not edit this file; it is auto-generated from LSR http://lsr.dsi.unimi.it %% This file is in the public domain. -\version "2.11.38" +\version "2.12.0" \header { lsrtags = "expressive-marks, keyboards, unfretted-strings" + 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, you may want to create slurs between notes from -different voices. +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 -\\hideNotes. +@code{\\hideNotes}. -This example is bar 235 of the Ciaconna from Bach's 2nd Partita for +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 -<< - {d16( a') s a s a[ s a] s a[ s a] } \\ - {\slurUp bes,[ s e]( \hideNotes a) \unHideNotes f[( \hideNotes a) \unHideNotes fis]( \hideNotes a) \unHideNotes g[( \hideNotes a) \unHideNotes gis]( \hideNotes a) } ->> +\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) + } >> +}