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