]> git.donarmstrong.com Git - lilypond.git/blob - Documentation/snippets/default-direction-of-stems-on-the-center-line-of-the-staff.ly
Doc: run makelsr locally
[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   texidoc = "
31 The default direction of stems on the center line of the staff is set
32 by the @code{Stem} property @code{neutral-direction}.
33
34 "
35   doctitle = "Default direction of stems on the center line of the staff"
36 } % begin verbatim
37
38
39 \relative c'' {
40   a4 b c b
41   \override Stem #'neutral-direction = #up
42   a4 b c b
43   \override Stem #'neutral-direction = #down
44   a4 b c b
45 }
46