]> git.donarmstrong.com Git - lilypond.git/blob - Documentation/snippets/analysis-brackets-above-the-staff.ly
Run scripts/auxiliar/update-with-convert-ly.sh
[lilypond.git] / Documentation / snippets / analysis-brackets-above-the-staff.ly
1 %% DO NOT EDIT this file manually; it is automatically
2 %% generated from LSR http://lsr.dsi.unimi.it
3 %% Make any changes in LSR itself, or in Documentation/snippets/new/ ,
4 %% and then run scripts/auxiliar/makelsr.py
5 %%
6 %% This file is in the public domain.
7 \version "2.16.0"
8
9 \header {
10   lsrtags = "editorial-annotations, really-simple, tweaks-and-overrides"
11
12   texidoc = "
13 Simple horizontal analysis brackets are added below the staff by
14 default. The following example shows a way to place them above the
15 staff instead.
16
17 "
18   doctitle = "Analysis brackets above the staff"
19 } % begin verbatim
20
21
22 \layout {
23   \context {
24     \Voice
25     \consists "Horizontal_bracket_engraver"
26   }
27 }
28 \relative c'' {
29   \once \override HorizontalBracket #'direction = #UP
30   c2\startGroup
31   d2\stopGroup
32 }