]> git.donarmstrong.com Git - lilypond.git/blob - Documentation/snippets/default-direction-of-stems-on-the-center-line-of-the-staff.ly
Change stringTunings from list of semitones to list of pitches
[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.39"
5
6 \header {
7   lsrtags = "editorial-annotations"
8
9 %% Translation of GIT committish: a874fda3641c9e02f61be5c41b215b8304b8ed00
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
19 %% Translation of GIT committish: 0a868be38a775ecb1ef935b079000cebbc64de40
20   texidocde = "
21 Die Richtung von Hälsen auf der mittleren Linie kann mit der @code{Stem}-Eigenschaft
22 @code{neutral-direction} gesetzt werden.
23
24 "
25   doctitlede = "Standardrichtung für Hälse auf der Mittellinie"
26
27   texidoc = "
28 The default direction of stems on the center line of the staff is set
29 by the @code{Stem} property @code{neutral-direction}.
30
31 "
32   doctitle = "Default direction of stems on the center line of the staff"
33 } % begin verbatim
34
35 \relative c'' {
36   a4 b c b
37   \override Stem #'neutral-direction = #up
38   a4 b c b
39   \override Stem #'neutral-direction = #down
40   a4 b c b
41 }
42