X-Git-Url: https://git.donarmstrong.com/?a=blobdiff_plain;f=Documentation%2Fsnippets%2Fdefault-direction-of-stems-on-the-center-line-of-the-staff.ly;h=fe3caef8404f9abe4012129508d769d0d701cc8e;hb=de179d8b2cbf6fe86ff9a000a0d21bc6bc118905;hp=34b7c8c668d0b049d98ba815f5ee58f26f79906c;hpb=1141320a0957c1da3aeb560751a7e42d1e6593ae;p=lilypond.git diff --git a/Documentation/snippets/default-direction-of-stems-on-the-center-line-of-the-staff.ly b/Documentation/snippets/default-direction-of-stems-on-the-center-line-of-the-staff.ly index 34b7c8c668..fe3caef840 100644 --- a/Documentation/snippets/default-direction-of-stems-on-the-center-line-of-the-staff.ly +++ b/Documentation/snippets/default-direction-of-stems-on-the-center-line-of-the-staff.ly @@ -4,29 +4,11 @@ %% and then run scripts/auxiliar/makelsr.py %% %% This file is in the public domain. -\version "2.14.0" +\version "2.17.20" \header { lsrtags = "editorial-annotations" -%% Translation of GIT committish: 2d548a99cb9dba80f2ff035582009477cd37eceb - texidoces = " -La dirección predeterminada de las plicas sobre la tercera línea -del pentagrama está determinada por la propiedad -@code{neutral-direction} del objeto @code{Stem}. - -" - doctitlees = "Dirección predeterminada de las plicas sobre la tercera línea del pentagrama" - - -%% Translation of GIT committish: 0a868be38a775ecb1ef935b079000cebbc64de40 - texidocde = " -Die Richtung von Hälsen auf der mittleren Linie kann mit der @code{Stem}-Eigenschaft -@code{neutral-direction} gesetzt werden. - -" - doctitlede = "Standardrichtung für Hälse auf der Mittellinie" - texidoc = " The default direction of stems on the center line of the staff is set by the @code{Stem} property @code{neutral-direction}. @@ -35,11 +17,11 @@ by the @code{Stem} property @code{neutral-direction}. doctitle = "Default direction of stems on the center line of the staff" } % begin verbatim + \relative c'' { a4 b c b - \override Stem #'neutral-direction = #up + \override Stem.neutral-direction = #up a4 b c b - \override Stem #'neutral-direction = #down + \override Stem.neutral-direction = #down a4 b c b } -