]> git.donarmstrong.com Git - lilypond.git/blob - Documentation/snippets/partcombine-and-autobeamoff.ly
LSR: local update.
[lilypond.git] / Documentation / snippets / partcombine-and-autobeamoff.ly
1 %% Do not edit this file; it is automatically
2 %% generated from LSR http://lsr.dsi.unimi.it
3 %% This file is in the public domain.
4 \version "2.13.31"
5
6 \header {
7   lsrtags = "rhythms"
8
9 %%   Translation of GIT committish: ab9e3136d78bfaf15cc6d77ed1975d252c3fe506
10
11   texidocde = "
12 Die Funktionsweise von @code{@bs{}autoBeamOff}, wenn es zusammen mit
13 @code{@bs{}partcombine} eingesetzt wird, kann schwer zu verstehen sein.
14 Es kann besser sein, anstatt dessen
15
16 @example
17 \set Staff.autobeaming = ##f
18 @end example
19
20 @noindent
21 zu benutzen, um sicherzustellen, dass die automatische Bebalkung für das
22 gesamte System ausgeschaltet ist.
23
24 @code{\\partcombine} funktioniert offensichtlich mit 3 Stimme (Hals nach oben
25 einfach, Hals nach unten einfach, Hals nach oben kombiniert).
26
27 Ein @code{\\autoBeamOff}-Befehl im ersten Argument von @code{\\partcombine}
28 gilt für die Stimme, die zu dem Zeitpunkt aktiv ist, an dem der Befehl
29 verarbeitet wird, entweder für Hals nach oben, nach unten oder Hals nach
30 oben kombiniert.  Ein @code{\\autoBeamOff}-Befehl im zweiten Argument gilt
31 für die Stimme, die mit Hals nach unten einfach ist.
32
33 Um @code{\\autoBeamOff} zu benutzen, damit alle automatischen Balken aufhören,
34 wenn man es mit @code{\\partcombine} verwendet, muss @code{\\autoBeamOff}
35 @emph{dreimal} aufgerufen werden.
36
37 "
38 doctitlede = "Partcombine und autoBeamOff"
39
40 %% Translation of GIT committish: e1a149d0cc60b02e86209387958f4028567dd366
41   texidocfr = "
42 Le fonction @code{@bs{}autoBeamOff} dans le cadre d'un
43 @code{@bs{}partcombine} agit de façon bien particulière@tie{}; c'est
44 pourquoi il vaut mieux tout d'abord recourir à
45
46 @example
47 \set Staff.autobeaming = ##f
48 @end example
49
50 @noindent
51 pour désactiver les ligatures automatiques pour l'ensemble de la portée
52 concernée.
53
54 L'instruction @code{\\partcombine} fonctionne apparament sur la base de
55 trois voix@tie{}: solo hampes montantes, solo hampes descendantes et
56 ensemble hampes montantes.
57
58 Lorsque @code{\\autoBeamOff} apparaît dans le premier argument de la
59 combinaison, il s'applique à la voix active à ce moment précis, qu'il
60 s'agisse du solo hampes montantes ou du combiné hampes montantes.
61 Lorsqu'elle est introduite dans le second argument, la commande
62 @code{\\autoBeamOff} s'appliquera au solo hampes descendantes.
63
64 Vous devrez donc, afin que @code{\\autoBeamOff} soit pleinement
65 opérationnel dans le cadre d'un @code{\\partcombine}, l'introduire aux
66 @strong{trois} niveaux.
67
68 "
69 doctitlefr = "Partcombine et autoBeamOff"
70
71
72   texidoc = "
73 The function of @code{\\autoBeamOff} when used with
74 @code{\\partcombine} can be difficult to understand.
75
76 It may be preferable to use
77
78
79 @code{\\set Staff.autoBeaming = ##f}
80
81
82 instead, to ensure that autobeaming will be turned off for the entire
83 staff.
84
85
86 @code{\\partcombine} apparently works with 3 voices -- stem up single,
87 stem down single, stem up combined.
88
89
90 An @code{\\autoBeamOff} call in the first argument to partcombine will
91 apply to the voice that is active at the time the call is processed,
92 either stem up single or stem up combined. An @code{\\autoBeamOff} call
93 in the second argument will apply to the voice that is stem down single.
94
95
96 In order to use @code{\\autoBeamOff} to stop all autobeaming when used
97 with @code{\\partcombine}, it will be necessary to use three calls to
98 @code{\\autoBeamOff}.
99
100
101
102
103 "
104   doctitle = "Partcombine and autoBeamOff"
105 } % begin verbatim
106
107 {
108   %\set Staff.autoBeaming = ##f % turns off all autobeaming
109   \partcombine
110   {
111     \autoBeamOff % applies to split up stems
112     \repeat unfold 4 a'16
113     %\autoBeamOff % applies to combined up stems
114     \repeat unfold 4 a'8
115     \repeat unfold 4 a'16
116   }
117   {
118     \autoBeamOff % applies to down stems
119     \repeat unfold 4 f'8
120     \repeat unfold 8 f'16 |
121   }
122 }