开发者

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

Annotating score with lilypond

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:

Annotating score with lilypond

HTH

0

上一篇:

下一篇:

精彩评论

暂无评论...
验证码 换一张
取 消

最新问答

问答排行榜