]> git.donarmstrong.com Git - lilypond.git/blob - input/lsr/making-some-staff-lines-thicker-than-the-others.ly
Merge master into nested-bookparts
[lilypond.git] / input / lsr / making-some-staff-lines-thicker-than-the-others.ly
1 %% Do not edit this file; it is auto-generated from LSR http://lsr.dsi.unimi.it
2 %% This file is in the public domain.
3 \version "2.11.62"
4
5 \header {
6   lsrtags = "staff-notation, editorial-annotations"
7
8   texidoces = "
9 Se puede engrosar una línea del pentagrama con fines pedagógicos
10 (p.ej. la tercera línea o la de la clave de Sol).  Esto se puede
11 conseguir añadiendo más líneas muy cerca de la línea que se quiere
12 destacar, utilizando la propiedad @code{line-positions} del objeto
13 @code{StaffSymbol}.
14
15 "
16   doctitlees = "Hacer unas líneas del pentagrama más gruesas que las otras"
17
18   texidoc = "
19 For pedagogical purposes, a staff line can be thickened (e.g., the
20 middle line, or to emphasize the line of the G clef).  This can be
21 achieved by adding extra lines very close to the line that should be
22 emphasized, using the @code{line-positions} property of the
23 @code{StaffSymbol} object. 
24
25 "
26   doctitle = "Making some staff lines thicker than the others"
27 } % begin verbatim
28 {
29   \override Staff.StaffSymbol #'line-positions = #'(-4 -2 -0.2 0 0.2 2 4)
30   d'4 e' f' g'
31 }