X-Git-Url: https://git.donarmstrong.com/?a=blobdiff_plain;f=Documentation%2Fsnippets%2Fgrid-lines--changing-their-appearance.ly;h=254a266304f0467cf319f06072150e209cab3341;hb=25ca54b640c067e2286a1d7ba47f24a1b4dc070e;hp=af86ed4f5fd8d70552908830aee836b3ba16ad28;hpb=b01ca49c05566b73d690ae84fda6040b24fcf73f;p=lilypond.git diff --git a/Documentation/snippets/grid-lines--changing-their-appearance.ly b/Documentation/snippets/grid-lines--changing-their-appearance.ly index af86ed4f5f..254a266304 100644 --- a/Documentation/snippets/grid-lines--changing-their-appearance.ly +++ b/Documentation/snippets/grid-lines--changing-their-appearance.ly @@ -4,37 +4,11 @@ %% and then run scripts/auxiliar/makelsr.py %% %% This file is in the public domain. -\version "2.14.0" +\version "2.17.11" \header { lsrtags = "editorial-annotations" -%% Translation of GIT committish: 70f5f30161f7b804a681cd080274bfcdc9f4fe8c - 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: 0a868be38a775ecb1ef935b079000cebbc64de40 - texidocde = " -Die Erscheinung der Gitternetzlinien kann durch einige Eigenschaften -geändert werden. - -" - doctitlede = "Gitternetzlinien: Aussehen verändern" - -%% Translation of GIT committish: 9ccf7f0f5e52e074f3b7852416ad5b78718395c8 - texidocfr = " -Modifier certaines des propriétés du quadrillage temporel aura pour effet -d'en changer l'apparence. - -" - doctitlefr = "Apparence du quadrillage temporel" - - texidoc = " The appearance of grid lines can be changed by overriding some of their properties. @@ -43,6 +17,7 @@ properties. doctitle = "Grid lines: changing their appearance" } % begin verbatim + \score { \new ChoirStaff << \new Staff { @@ -54,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 } } @@ -74,14 +49,13 @@ properties. % set up grids \consists "Grid_point_engraver" % set the grid interval to one quarter note - gridInterval = #(ly:make-moment 1 4) + gridInterval = #(ly:make-moment 1/4) } \context { \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 } } } -