]> git.donarmstrong.com Git - lilypond.git/blob - Documentation/snippets/analysis-brackets-above-the-staff.ly
Docs: reorganize documentation directory structure
[lilypond.git] / Documentation / snippets / analysis-brackets-above-the-staff.ly
1 %% Do not edit this file; it is auto-generated from LSR http://lsr.dsi.unimi.it
2 %% This file is in the public domain.
3 \version "2.13.1"
4
5 \header {
6   lsrtags = "editorial-annotations, tweaks-and-overrides"
7
8 %% Translation of GIT committish: 00e3a8264e138ad61b4f115a173190d5e9dc7533
9   texidoces = "
10 De forma predeterminada se añaden corchetes de análisis sencillos
11 debajo del pentagrama.  El ejemplo siguiente muestra una manera de
12 colocarlos por encima.
13
14 "
15   doctitlees = "Corchetes de análisis encima del pentagrama"
16
17   texidoc = "
18 Simple horizontal analysis brackets are added below the staff by
19 default. The following example shows a way to place them above the
20 staff instead.
21
22 "
23   doctitle = "Analysis brackets above the staff"
24 } % begin verbatim
25
26 \layout {
27   \context {
28     \Voice
29     \consists "Horizontal_bracket_engraver"
30   }
31 }
32 \relative c'' {
33   \once \override HorizontalBracket #'direction = #UP
34   c2\startGroup
35   d2\stopGroup
36 }
37