]> git.donarmstrong.com Git - lilypond.git/blobdiff - input/lsr/manually-controlling-beam-positions.ly
Improve Snippets document
[lilypond.git] / input / lsr / manually-controlling-beam-positions.ly
index 442c172727dcb3e7034e20a593908c97355b9d1f..aa18cd1de11e86afe514363a1759955ccbd6812f 100644 (file)
@@ -4,21 +4,24 @@
 
 \header {
   lsrtags = "rhythms, tweaks-and-overrides"
- texidoc = "
+
+  texidoc = "
 Beam positions may be controlled manually, by overriding the
 @code{positions} setting of the @code{Beam} grob.
 
 
 
-" }
-% begin verbatim
-\relative c {
+
+"
+  doctitle = "Manually controlling beam positions"
+} % begin verbatim
+\relative c' {
   \time 2/4
-  % from upper staffline (position 4) to centre (position 0)
-  \override Beam  #'positions = #'(2 . 0)
-  c'8 c
-  % from centre to one above centre (position 2)
-  \override Beam  #'positions = #'(0 . 1)
+  % from upper staffline (position 4) to center (position 0)
+  \override Beam #'positions = #'(2 . 0)
+  c8 c
+  % from center to one above center (position 2)
+  \override Beam #'positions = #'(0 . 1)
   c c
 }