]> git.donarmstrong.com Git - lilypond.git/blob - input/lsr/making-some-staff-lines-thicker-than-the-others.ly
Merge branch 'master' of git://git.sv.gnu.org/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 @code{'line-positions} property of the
12 @code{StaffSymbol} object. 
13 " }
14 % begin verbatim
15 {
16   \override Staff.StaffSymbol #'line-positions = #'(-4 -2 -0.2 0 0.2 2 4)
17   d'4 e' f' g'
18 }