]> git.donarmstrong.com Git - lilypond.git/blobdiff - Documentation/snippets/grid-lines--emphasizing-rhythms-and-notes-synchronization.ly
Rerun scripts/auxiliar/update-with-convert-ly.sh
[lilypond.git] / Documentation / snippets / grid-lines--emphasizing-rhythms-and-notes-synchronization.ly
index 03ffbe9067850265595ad0ed7bd69b311401f9fe..cd425b79cb2544611efe416778aa8ed5e7ff55fe 100644 (file)
@@ -4,31 +4,11 @@
 %% and then run scripts/auxiliar/makelsr.py
 %%
 %% This file is in the public domain.
-\version "2.14.2"
+\version "2.17.6"
 
 \header {
   lsrtags = "editorial-annotations"
 
-%% Translation of GIT committish: b482c3e5b56c3841a88d957e0ca12964bd3e64fa
-  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"
-
-%% Translation of GIT committish: 57f9346bb030f49336a858fcbf1519366fe56454
-  texidocfr = "
-Des lignes verticales entre les portées peuvent s'ajouter dans le but
-d'indiquer la synchronisation entre des notes.  Dans le cas de musique
-monophonique, on peut toutefois créer une deuxième portée, invisible, et
-raccourcir les lignes comme ici.
-
-"
-  doctitlefr = "Quadrillage temporel : mise en évidence du rythme et synchronisation des notes"
-
   texidoc = "
 Regular vertical lines can be drawn between staves to show note
 synchronization; however, in case of monophonic music, you may want to
@@ -51,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
       }
     >>
@@ -73,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
@@ -82,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
   }
 }
-