X-Git-Url: https://git.donarmstrong.com/?a=blobdiff_plain;f=Documentation%2Fsnippets%2Fgrid-lines--emphasizing-rhythms-and-notes-synchronization.ly;h=cd425b79cb2544611efe416778aa8ed5e7ff55fe;hb=13da8b27aabc5d5a752d00ed1e2b99ad20f0f264;hp=0450c827f29f03ca9626deb86fb49f62cb9251a1;hpb=94408d4a2e538e8812561f29e09116ede58dd042;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 0450c827f2..cd425b79cb 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 +%% 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.29" +\version "2.17.6" \header { lsrtags = "editorial-annotations" -%% Translation of GIT committish: 0b55335aeca1de539bf1125b717e0c21bb6fa31b - 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 @@ -26,6 +19,7 @@ this snippet. doctitle = "Grid lines: emphasizing rhythms and notes synchronization" } % begin verbatim + \score { \new ChoirStaff { \relative c'' << @@ -37,19 +31,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 + \override Staff.BarLine.transparent = ##t + \override Staff.StaffSymbol.line-count = #0 + \override Staff.TimeSignature.transparent = ##t + \override Staff.Clef.transparent = ##t % 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,7 +53,7 @@ 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 @@ -68,9 +62,8 @@ this snippet. % 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 } } -