]> git.donarmstrong.com Git - lilypond.git/blob - Documentation/snippets/default-direction-of-stems-on-the-center-line-of-the-staff.ly
049e7229412a301ac8442b8bb9d54feac4ddc09e
[lilypond.git] / Documentation / snippets / default-direction-of-stems-on-the-center-line-of-the-staff.ly
1 %% DO NOT EDIT this file manually; it is automatically
2 %% generated from LSR http://lsr.dsi.unimi.it
3 %% Make any changes in LSR itself, or in Documentation/snippets/new/ ,
4 %% and then run scripts/auxiliar/makelsr.py
5 %%
6 %% This file is in the public domain.
7 \version "2.14.2"
8
9 \header {
10   lsrtags = "editorial-annotations"
11
12 %% Translation of GIT committish: b482c3e5b56c3841a88d957e0ca12964bd3e64fa
13   texidoces = "
14 La dirección predeterminada de las plicas sobre la tercera línea
15 del pentagrama está determinada por la propiedad
16 @code{neutral-direction} del objeto @code{Stem}.
17
18 "
19   doctitlees = "Dirección predeterminada de las plicas sobre la tercera línea del pentagrama"
20
21
22 %% Translation of GIT committish: 0a868be38a775ecb1ef935b079000cebbc64de40
23   texidocde = "
24 Die Richtung von Hälsen auf der mittleren Linie kann mit der @code{Stem}-Eigenschaft
25 @code{neutral-direction} gesetzt werden.
26
27 "
28   doctitlede = "Standardrichtung für Hälse auf der Mittellinie"
29
30 %% Translation of GIT committish: 30339cb3706f6399c84607426988b25f79b4998c
31   texidocfr = "
32 La direction des hampes des notes placées sur la ligne médiane de la
33 portée est gérée par la propriété @code{neutral-direction} de l'objet
34 @code{Stem}.
35
36 "
37   doctitlefr = "Direction par défaut des hampes de la ligne médiane"
38
39   texidoc = "
40 The default direction of stems on the center line of the staff is set
41 by the @code{Stem} property @code{neutral-direction}.
42
43 "
44   doctitle = "Default direction of stems on the center line of the staff"
45 } % begin verbatim
46
47
48 \relative c'' {
49   a4 b c b
50   \override Stem #'neutral-direction = #up
51   a4 b c b
52   \override Stem #'neutral-direction = #down
53   a4 b c b
54 }
55