Annotating score with lilypond
I'm using lilypond (2.12.3-1, on mac) and latex to write a short summary on music theory. Therefore I need to annotate a simple scale like in this example picture (I don't need the red squares):
The only t开发者_如何学运维hing I found were the analysis brackets (http://lsr.dsi.unimi.it/LSR/Item?id=426), but they didn't work; I'm getting compile errors.
So I would be very happy to get some working solutions, any ideas?
The following:
\layout {
\context {
\Voice
\consists "Horizontal_bracket_engraver"
}
}
\version "2.12.3" \relative c' {
c1 \startGroup
d1 _\markup { \left-align { "1. Tetrachord" } }
\once \override HorizontalBracket #'direction = #UP
e1 \startGroup ^\markup { \left-align { "HS" } }
f1 \stopGroup \stopGroup
g1 \startGroup
a1 _\markup { \left-align { "2. Tetrachord" } }
\once \override HorizontalBracket #'direction = #UP
b1 \startGroup ^\markup { \left-align { "HS" } }
c1 \stopGroup \stopGroup
}
produces:
HTH
精彩评论