]> git.donarmstrong.com Git - lilypond.git/blob - input/lsr/making-some-staff-lines-thicker-than-the-others.ly
Run convert-ly on input/lsr and input/regression
[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.51"
4
5 \header {
6   lsrtags = "staff-notation, editorial-annotations"
7
8   texidoc = "
9 For pedagogical purposes, a staff line can be thickened (e.g., the
10 middle line, or to emphasize the line of the G clef).  This can be
11 achieved by adding extra lines very close to the line that should be
12 emphasized, using the @code{line-positions} property of the
13 @code{StaffSymbol} object. 
14
15 "
16   doctitle = "Making some staff lines thicker than the others"
17 } % begin verbatim
18 {
19   \override Staff.StaffSymbol #'line-positions = #'(-4 -2 -0.2 0 0.2 2 4)
20   d'4 e' f' g'
21 }