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