X-Git-Url: https://git.donarmstrong.com/?a=blobdiff_plain;f=Documentation%2Fsnippets%2Fgrid-lines--emphasizing-rhythms-and-notes-synchronization.ly;h=f6c1dc359350dcd88ac7f1fd8794326c6b595b4d;hb=4d405ef96a8a62771d7d9a283ff5369a772e89d8;hp=de98117a0f83fc711bcfa24d29c64254695f643f;hpb=162b5d842f34770c92b173878348a0afcc81f281;p=lilypond.git diff --git a/Documentation/snippets/grid-lines--emphasizing-rhythms-and-notes-synchronization.ly b/Documentation/snippets/grid-lines--emphasizing-rhythms-and-notes-synchronization.ly index de98117a0f..f6c1dc3593 100644 --- a/Documentation/snippets/grid-lines--emphasizing-rhythms-and-notes-synchronization.ly +++ b/Documentation/snippets/grid-lines--emphasizing-rhythms-and-notes-synchronization.ly @@ -1,21 +1,14 @@ -%% Do not edit this file; it is automatically -%% generated from LSR http://lsr.dsi.unimi.it +%% DO NOT EDIT this file manually; it is automatically +%% generated from LSR http://lsr.di.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.18.0" \header { lsrtags = "editorial-annotations" -%% Translation of GIT committish: 5a7301fc350ffc3ab5bd3a2084c91666c9e9a549 - texidoces = " -Se pueden trazar líneas verticales normales entre pentagramas para -mostrar la relación entre notas; sin embargo, en caso de música -monofónica, podemos hacer invisible el segundo pentagrama, y que -las líneas sean más cortas, como en este fragmento de código. - -" - doctitlees = "Líneas de rejilla: destacar ritmos y la relación temporal entre notas" - texidoc = " Regular vertical lines can be drawn between staves to show note synchronization; however, in case of monophonic music, you may want to @@ -37,19 +30,19 @@ this snippet. \new Staff { % hides staff and notes so that only the grid lines are visible \hideNotes - \override Staff.BarLine #'transparent = ##t - \override Staff.StaffSymbol #'line-count = #0 - \override Staff.TimeSignature #'transparent = ##t - \override Staff.Clef #'transparent = ##t + \hide Staff.BarLine + \override Staff.StaffSymbol.line-count = #0 + \hide Staff.TimeSignature + \hide Staff.Clef % dummy notes to force regular note spacing - \once \override Score.GridLine #'thickness = #4.0 + \once \override Score.GridLine.thickness = #4.0 c8 c c - \once \override Score.GridLine #'thickness = #3.0 + \once \override Score.GridLine.thickness = #3.0 c8 c c - \once \override Score.GridLine #'thickness = #4.0 + \once \override Score.GridLine.thickness = #4.0 c8 c c - \once \override Score.GridLine #'thickness = #3.0 + \once \override Score.GridLine.thickness = #3.0 c8 c c } >> @@ -59,18 +52,17 @@ this snippet. \Score \consists "Grid_line_span_engraver" % center grid lines horizontally below note heads - \override NoteColumn #'X-offset = #-0.5 + \override NoteColumn.X-offset = #-0.5 } \context { \Staff \consists "Grid_point_engraver" - gridInterval = #(ly:make-moment 1 8) + gridInterval = #(ly:make-moment 1/8) % set line length and positioning: % two staff spaces above center line on hidden staff % to four spaces below center line on visible staff - \override GridPoint #'Y-extent = #'(2 . -4) + \override GridPoint.Y-extent = #'(2 . -4) } ragged-right = ##t } } -