]> git.donarmstrong.com Git - lilypond.git/blob - input/lsr/adding-beams,-slurs,-ties-etc.-when-using-tuplet-and-non-tuplet-rythms..ly
Merge master into nested-bookparts
[lilypond.git] / input / lsr / adding-beams,-slurs,-ties-etc.-when-using-tuplet-and-non-tuplet-rythms..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 = "rhythms, expressive-marks"
7
8   texidoces = "
9 La sintaxis de LilyPond puede implicar muchas colocaciones poco
10 comunes para los paréntesis, corchetes, etc, que a veces se tienen
11 que intercalar. Por ejemplo, al introducir una barra manual, el
12 corchete izquierdo de apertura se debe escribir después de la nota
13 inicial y de su duración, no antes. De forma similar, el corchete
14 derecho de cierre debe seguir inmediatamente a la nota que se
15 quiere situar al final del barrado, incluso si esta nota resulta
16 estar dentro de un grupo de valoración especial. Este fragmento de
17 código muestra cómo combinar el barrado manual, las ligaduras de
18 expresión y de unión y las ligaduras de fraseo, con secciones de
19 valoración especial (encerradas entre llaves).
20
21 "
22   doctitlees = "Añadir barras, ligaduras de expresión y de unión, etc. cuando se usan ritmos con y sin grupos de valoración especial."
23
24   texidoc = "
25 LilyPond syntax can involve many unusual placements for parentheses,
26 brackets etc., which might sometimes have to be interleaved. For
27 example, when entering a manual beam, the left square bracket has to be
28 placed after the starting note and its duration, not before. Similarly,
29 the right square bracket should directly follow the note which is to be
30 at the end of the requested beaming, even if this note happens to be
31 inside a tuplet section. This snippet demonstrates how to combine
32 manual beaming, manual slurs, ties and phrasing slurs with tuplet
33 sections (enclosed within curly braces). 
34
35 "
36   doctitle = "Adding beams, slurs, ties etc. when using tuplet and non-tuplet rythms."
37 } % begin verbatim
38 {
39   r16[ g16 \times 2/3 { r16 e'8] }
40   g16( a \times 2/3 { b d e') }
41   g8[( a \times 2/3 { b d') e']~ }
42   \time 2/4
43   \times 4/5 { e'32\( a b d' e' } a'4.\)
44 }