X-Git-Url: https://git.donarmstrong.com/?a=blobdiff_plain;f=Documentation%2Fsnippets%2Fgrid-lines--changing-their-appearance.ly;h=abb031df093b1fbf27fb2d166a4b783351daf401;hb=56c1aa842664748f73e4da2f9e58ab9bf3a7f652;hp=e33cd7bec43b8f4d1185bcaee425f55d9147da1a;hpb=f5387a5c986393052bc9443ebd9b6cd9f14c6887;p=lilypond.git diff --git a/Documentation/snippets/grid-lines--changing-their-appearance.ly b/Documentation/snippets/grid-lines--changing-their-appearance.ly index e33cd7bec4..abb031df09 100644 --- a/Documentation/snippets/grid-lines--changing-their-appearance.ly +++ b/Documentation/snippets/grid-lines--changing-their-appearance.ly @@ -1,35 +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.10" +\version "2.17.6" \header { lsrtags = "editorial-annotations" -%% Translation of GIT committish: 5cab62e8738ff02eead438042743116391f306f5 - texidoces = " -Se puede cambiar el aspecto de las líneas de rejilla -sobreescribiendo algunas de sus propiedades. - -" - doctitlees = "Líneas de rejilla: modificar su aspecto" - -%% Translation of GIT committish: d96023d8792c8af202c7cb8508010c0d3648899d - texidocde = " -Die Erscheinung der Gitternetzlinien kann durch einige Eigenschaften -geändert werden. - -" - doctitlede = "Gitternetzlinien: Aussehen verändern" -%% Translation of GIT committish: ca543ea73189a1e53af94973dad0b8a5042c130c - texidocfr = " -Modifier certaines des propriétés du cadrillage temporel aura pour effet -d'en changer l'apparence. - -" - doctitlefr = "Apparence du cadrillage temporel" - - texidoc = " The appearance of grid lines can be changed by overriding some of their properties. @@ -38,6 +17,7 @@ properties. doctitle = "Grid lines: changing their appearance" } % begin verbatim + \score { \new ChoirStaff << \new Staff { @@ -49,16 +29,16 @@ properties. \new Staff { \relative c { % this moves them up one staff space from the default position - \override Score.GridLine #'extra-offset = #'(0.0 . 1.0) + \override Score.GridLine.extra-offset = #'(0.0 . 1.0) \stemDown \clef bass - \once \override Score.GridLine #'thickness = #5.0 + \once \override Score.GridLine.thickness = #5.0 c4 - \once \override Score.GridLine #'thickness = #1.0 + \once \override Score.GridLine.thickness = #1.0 g'4 - \once \override Score.GridLine #'thickness = #3.0 + \once \override Score.GridLine.thickness = #3.0 f4 - \once \override Score.GridLine #'thickness = #5.0 + \once \override Score.GridLine.thickness = #5.0 e4 } } @@ -75,8 +55,7 @@ properties. \Score \consists "Grid_line_span_engraver" % this moves them to the right half a staff space - \override NoteColumn #'X-offset = #-0.5 + \override NoteColumn.X-offset = #-0.5 } } } -