]> git.donarmstrong.com Git - lilypond.git/blob - input/lsr/making-some-staff-lines-thicker-than-the-others.ly
Merge branch 'master' of ssh://jomand@git.sv.gnu.org/srv/git/lilypond
[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.38"
4
5 \header {
6   lsrtags = "staff-notation, editorial-and-educational-use"
7  texidoc = "
8 For pedagogical purposes, you may want to make one staff line thicker
9 (e.g. the middle line, to emphasize the line of the G clef). This can
10 be achieved by adding extra lines very close to the line you want to
11 make thicker, using the #'line-positions property in the StaffSymbol
12 context.
13 " }
14 % begin verbatim
15 \score {
16      \new Staff{
17      \override Staff.StaffSymbol #'line-positions =#'(-4 -2 -0.2 0 0.2 2 4 )
18          d'4 e' f' g'
19      }
20 }