]> git.donarmstrong.com Git - lilypond.git/blob - Documentation/snippets/analysis-brackets-above-the-staff.ly
60d2a39829c0efe45a508b80872452682864f05f
[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.12.2"
8
9 \header {
10   lsrtags = "editorial-annotations, tweaks-and-overrides"
11
12 %% Translation of GIT committish: 59caa3adce63114ca7972d18f95d4aadc528ec3d
13   texidoces = "
14 De forma predeterminada se añaden corchetes de análisis sencillos
15 debajo del pentagrama.  El ejemplo siguiente muestra una manera de
16 colocarlos por encima.
17
18 "
19   doctitlees = "Corchetes de análisis encima del pentagrama"
20
21   texidoc = "
22 Simple horizontal analysis brackets are added below the staff by
23 default. The following example shows a way to place them above the
24 staff instead.
25
26 "
27   doctitle = "Analysis brackets above the staff"
28 } % begin verbatim
29
30 \layout {
31   \context {
32     \Voice
33     \consists "Horizontal_bracket_engraver"
34   }
35 }
36 \relative c'' {
37   \once \override HorizontalBracket #'direction = #UP
38   c2\startGroup
39   d2\stopGroup
40 }
41