Annotating score with lilypond

839 views Asked by At

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):

example annotated scale

The only thing 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?

1

There are 1 answers

3
Bart Kiers On BEST ANSWER

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:

enter image description here

HTH