]> git.donarmstrong.com Git - lilypond.git/blobdiff - input/lsr/engraving-ties-manually.ly
Merge branch 'master' of git://git.sv.gnu.org/lilypond
[lilypond.git] / input / lsr / engraving-ties-manually.ly
index 58781733e66a41d9decf1e1b42df3f2b14d30816..3dc83dddac7043ac41c29866bdb8331f6620ef8d 100644 (file)
@@ -4,16 +4,19 @@
 
 \header {
   lsrtags = "rhythms"
- texidoc = "
+
+  texidoc = "
 Ties may be engraved manually by changing the @code{tie-configuration}
 property of the @code{TieColumn} object. The first number indicates the
 distance from the center of the staff in staff-spaces, and the second
 number indicates the direction (1 = up, -1 = down).
-" }
-% begin verbatim
+
+"
+  doctitle = "Engraving ties manually"
+} % begin verbatim
 \relative c' {
-  <c e g>2~ <c e g> |
+  <c e g>2 ~ <c e g> |
   \override TieColumn #'tie-configuration =
     #'((0.0 . 1) (-2.0 . 1) (-4.0 . 1))
-  <c e g>~ <c e g> |
+  <c e g> ~ <c e g> |
 }