]> git.donarmstrong.com Git - lilypond.git/blob - Documentation/snippets/specifying-context-with-beatgrouping.ly
Docs: reorganize documentation directory structure
[lilypond.git] / Documentation / snippets / specifying-context-with-beatgrouping.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, tweaks-and-overrides"
7
8 %% Translation of GIT committish: 5c26e815f2ed54e6c4d022bac10dcc87a9916a29
9   texidoces = "
10 Mediante la especificación del contexto, el efecto de
11 @code{beatGrouping} puede limitarse al contexto especificado, y
12 sobreescribirse los valores establecidos en contextos de niveles más
13 altos:
14
15 "
16   doctitlees = "Especificar el contexto con beatGrouping"
17
18 %% Translation of GIT committish: 0364058d18eb91836302a567c18289209d6e9706
19   texidocde = "
20 Wenn der Kontext angegeben wird, kann die Auswirkung von @code{beatGrouping}
21 auf den angegebenen Kontext beschränkt werden und die Werte, die in Kontexten
22 auf höhrer Ebene angegeben wurden, können verändert werden.  Der
23 @code{\\set}-Befehl muss @emph{nach} den @code{\\time}-Befehl geschrieben
24 werden:
25 "
26   doctitlede = "Den Kontext für beatGrouping angeben"
27
28
29 %% Translation of GIT committish: b3196fadd8f42d05ba35e8ac42f7da3caf8a3079
30   texidocfr = "
31 Le fait de spécifier un contexte à @code{beatGrouping} permet d'en 
32 limiter les effets.  Par voie de conséquence, il sera possible
33 d'outrepasser les règles définies à un niveau supérieur.  La commande
34 @code{\set} destinée à en modifier les valeurs doit se placer après la 
35 commande @code{\time} :
36
37 "
38   doctitlefr = "Spécification du contexte auquel s'appliquera beatGrouping"
39
40   texidoc = "
41 By specifying the context, the effect of @code{beatGrouping} can be
42 limited to the context specified, and the values which may have been
43 set in higher-level contexts can be overridden.  The @code{\\set}
44 commands must be placed after all @code{\\time} commands:
45
46 "
47   doctitle = "Specifying context with beatGrouping"
48 } % begin verbatim
49
50 \score {
51   \new Staff <<
52     \time 7/8
53     \new Voice {
54       \relative c'' {
55         \set Staff.beatGrouping = #'(2 3 2)
56         a8 a a a a a a
57       }
58     }
59     \new Voice {
60       \relative c' {
61         \voiceTwo
62         \set beatGrouping = #'(1 3 3)
63         f8 f f f f f f
64       }
65     }
66   >>
67 }