]> git.donarmstrong.com Git - lilypond.git/blobdiff - 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
index 26b89af1421481143ce93cbbb1e51f7736a3e2f2..9499426cd3d684aa3a041178bfc7f87540e6cd8e 100644 (file)
@@ -4,17 +4,18 @@
 
 \header {
   lsrtags = "staff-notation, editorial-and-educational-use"
- texidoc = "
+
+  texidoc = "
 For pedagogical purposes, you may want to make one staff line thicker
 (e.g. the middle line, to emphasize the line of the G clef). This can
 be achieved by adding extra lines very close to the line you want to
-make thicker, using the #'line-positions property in the StaffSymbol
-context.
-" }
-% begin verbatim
-\score {
-     \new Staff{
-     \override Staff.StaffSymbol #'line-positions =#'(-4 -2 -0.2 0 0.2 2 4 )
-         d'4 e' f' g'
-     }
+make thicker, using the @code{'line-positions} property of the
+@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)
+  d'4 e' f' g'
 }