]> git.donarmstrong.com Git - lilypond.git/blobdiff - Documentation/snippets/making-some-staff-lines-thicker-than-the-others.ly
Further LSR tidying
[lilypond.git] / Documentation / snippets / making-some-staff-lines-thicker-than-the-others.ly
index c4da2322c6f550724ce03866b23de8cd606abeaa..1bacee840448df176596f0ea7e5789a904b731f3 100644 (file)
@@ -1,45 +1,27 @@
-%% Do not edit this file; it is auto-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.1"
+\version "2.18.0"
 
 \header {
-  lsrtags = "staff-notation, editorial-annotations"
-
-%% Translation of GIT committish: b2d4318d6c53df8469dfa4da09b27c15a374d0ca
-  texidoces = "
-Se puede engrosar una línea del pentagrama con fines pedagógicos
-(p.ej. la tercera línea o la de la clave de Sol).  Esto se puede
-conseguir añadiendo más líneas muy cerca de la línea que se quiere
-destacar, utilizando la propiedad @code{line-positions} del objeto
-@code{StaffSymbol}.
-
-"
-  doctitlees = "Hacer unas líneas del pentagrama más gruesas que las otras"
-
-%% Translation of GIT committish: d96023d8792c8af202c7cb8508010c0d3648899d
-  texidocde = "
-Für den pädagogischen Einsatz kann eine Linie des Notensystems dicker
-gezeichnet werden (z. B. die Mittellinie, oder um den Schlüssel hervorzuheben).
-Das ist möglich, indem man zusätzliche Linien sehr nahe an der Linie, die
-dicker erscheinen soll, einfügt.  Dazu wird die @code{line-positions}-Eigenschaft
-herangezogen.
-
-"
-  doctitlede = "Eine Linie des Notensystems dicker als die anderen machen"
+  lsrtags = "editorial-annotations, really-cool, staff-notation, workaround"
 
   texidoc = "
-For pedagogical purposes, a staff line can be thickened (e.g., the
+For educational purposes, a staff line can be thickened (e.g., the
 middle line, or to emphasize the line of the G clef).  This can be
 achieved by adding extra lines very close to the line that should be
 emphasized, using the @code{line-positions} property of the
-@code{StaffSymbol} object. 
+@code{StaffSymbol} object.
 
 "
   doctitle = "Making some staff lines thicker than the others"
 } % begin verbatim
 
 {
-  \override Staff.StaffSymbol #'line-positions = #'(-4 -2 -0.2 0 0.2 2 4)
+  \override Staff.StaffSymbol.line-positions =
+    #'(-4 -2 -0.2 0 0.2 2 4)
   d'4 e' f' g'
 }
-