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