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=fb5af1b3a32c60407e4f5fb1acd713400076a77e;hb=9d6de982fe5be4786a9bc8ff71d577042dbba61f;hp=eef349bd13b9c1d10b830c6efa75a6e4851907c0;hpb=3f912dfe2d4aacfac95d1565e5d60ab02346945e;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 eef349bd13..fb5af1b3a3 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 @@ -1,28 +1,14 @@ -%% Do not edit this file; it is automatically +%% DO NOT EDIT this file manually; it is automatically %% generated from LSR http://lsr.dsi.unimi.it +%% Make any changes in LSR itself, or in Documentation/snippets/new/ , +%% and then run scripts/auxiliar/makelsr.py +%% %% This file is in the public domain. -\version "2.13.16" +\version "2.17.25" \header { lsrtags = "editorial-annotations" -%% Translation of GIT committish: 5a7301fc350ffc3ab5bd3a2084c91666c9e9a549 - 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}. @@ -31,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 } -