]> git.donarmstrong.com Git - lilypond.git/blob - Documentation/snippets/default-direction-of-stems-on-the-center-line-of-the-staff.ly
Merge branch 'lilypond/translation' of ssh://git.sv.gnu.org/srv/git/lilypond into...
[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: b2d4318d6c53df8469dfa4da09b27c15a374d0ca
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: d96023d8792c8af202c7cb8508010c0d3648899d
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