]> git.donarmstrong.com Git - lilypond.git/blob - Documentation/snippets/default-direction-of-stems-on-the-center-line-of-the-staff.ly
Local updates from LSR
[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 %% Translation of GIT committish: 30339cb3706f6399c84607426988b25f79b4998c
11   texidocfr = "
12 La direction des hampes des notes placées sur la ligne médiane de la
13 portée est gérée par la propriété @code{neutral-direction} de l'objet
14 @code{Stem}.
15
16 "
17   doctitlefr = "Direction par défaut des hampes de la ligne médiane"
18
19   lsrtags = "editorial-annotations"
20
21
22 %% Translation of GIT committish: b482c3e5b56c3841a88d957e0ca12964bd3e64fa
23   texidoces = "
24 La dirección predeterminada de las plicas sobre la tercera línea
25 del pentagrama está determinada por la propiedad
26 @code{neutral-direction} del objeto @code{Stem}.
27
28 "
29   doctitlees = "Dirección predeterminada de las plicas sobre la tercera línea del pentagrama"
30
31
32 %% Translation of GIT committish: 0a868be38a775ecb1ef935b079000cebbc64de40
33   texidocde = "
34 Die Richtung von Hälsen auf der mittleren Linie kann mit der @code{Stem}-Eigenschaft
35 @code{neutral-direction} gesetzt werden.
36
37 "
38   doctitlede = "Standardrichtung für Hälse auf der Mittellinie"
39
40   texidoc = "
41 The default direction of stems on the center line of the staff is set
42 by the @code{Stem} property @code{neutral-direction}.
43
44 "
45   doctitle = "Default direction of stems on the center line of the staff"
46 } % begin verbatim
47
48
49 \relative c'' {
50   a4 b c b
51   \override Stem #'neutral-direction = #up
52   a4 b c b
53   \override Stem #'neutral-direction = #down
54   a4 b c b
55 }
56