]> git.donarmstrong.com Git - lilypond.git/blob - Documentation/snippets/centering-markup-on-note-heads-automatically.ly
Run scripts/auxiliar/update-with-convert-ly.sh
[lilypond.git] / Documentation / snippets / centering-markup-on-note-heads-automatically.ly
1 % DO NOT EDIT this file manually; it is automatically
2 % generated from Documentation/snippets/new
3 % Make any changes in Documentation/snippets/new/
4 % and then run scripts/auxiliar/makelsr.py
5 %
6 % This file is in the public domain.
7 %% Note: this file works from version 2.15.31
8 \version "2.16.0"
9
10 \header {
11   lsrtags = "text, tweaks-and-overrides, contexts-and-engravers"
12   texidoc = "
13 For technical reasons, text scripts attached to note heads cannot
14 easily be centered on a note head's width, unlike articulations.
15
16 Instead of using trial-and-error offset tweaks, this snippet uses a
17 Scheme engraver to reset the horizontal parent of each markup to a
18 @code{NoteColumn}.  This also allows text to follow note heads which have
19 been shifted via @code{force-hshift}.
20 "
21   doctitle = "Centering markup on note heads automatically"
22 } % begin verbatim
23
24
25 #(define (Text_align_engraver ctx)
26   (let ((scripts '())
27         (note-column #f))
28     (make-engraver
29      (acknowledgers
30       ((note-column-interface trans grob source)
31        ;; cache NoteColumn in this Voice context
32        (set! note-column grob))
33       ((text-script-interface trans grob source)
34        ;; whenever a TextScript is acknowledged,
35        ;; add it to `scripts' list
36        (set! scripts (cons grob scripts))))
37      ((stop-translation-timestep trans)
38       ;; if any TextScript grobs exist,
39       ;; set NoteColumn as X-parent
40       (for-each (lambda (script)
41                   (set! (ly:grob-parent script X) note-column))
42                 scripts)
43       ;; clear scripts ready for next timestep
44       (set! scripts '())))))
45
46 \layout {
47   \context {
48     \Voice
49     \consists #Text_align_engraver
50     \override TextScript #'X-offset =
51       #ly:self-alignment-interface::aligned-on-x-parent
52     \override TextScript #'self-alignment-X = #CENTER
53   }
54 }
55
56 \new Staff <<
57   \relative c'' {
58     \override NoteColumn #'force-hshift = #3
59     c1-\markup { \arrow-head #Y #DOWN ##t }
60   }
61   \\
62   \relative c' {
63     a4 a-\markup { \huge ^ } a a
64   }
65 >>