]> git.donarmstrong.com Git - lilypond.git/blob - Documentation/snippets/default-direction-of-stems-on-the-center-line-of-the-staff.ly
d621ba4b4ae163a71daaa045e9d554bf0d676165
[lilypond.git] / Documentation / snippets / default-direction-of-stems-on-the-center-line-of-the-staff.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.16"
5
6 \header {
7   lsrtags = "editorial-annotations"
8
9 %% Translation of GIT committish: 2b0dc29608d6c3f5a03ead4877ae514c647adb74
10   texidoces = "
11 La dirección predeterminada de las plicas sobre la tercera línea
12 del pentagrama está determinada por la propiedad
13 @code{neutral-direction} del objeto @code{Stem}.
14
15 "
16   doctitlees = "Dirección predeterminada de las plicas sobre la tercera línea del pentagrama"
17
18 %% Translation of GIT committish: 0a868be38a775ecb1ef935b079000cebbc64de40
19   texidocde = "
20 Die Richtung von Hälsen auf der mittleren Linie kann mit der @code{Stem}-Eigenschaft
21 @code{neutral-direction} gesetzt werden.
22
23 "
24   doctitlede = "Standardrichtung für Hälse auf der Mittellinie"
25
26   texidoc = "
27 The default direction of stems on the center line of the staff is set
28 by the @code{Stem} property @code{neutral-direction}.
29
30 "
31   doctitle = "Default direction of stems on the center line of the staff"
32 } % begin verbatim
33
34 \relative c'' {
35   a4 b c b
36   \override Stem #'neutral-direction = #up
37   a4 b c b
38   \override Stem #'neutral-direction = #down
39   a4 b c b
40 }
41