]> git.donarmstrong.com Git - lilypond.git/blob - Documentation/snippets/analysis-brackets-above-the-staff.ly
Merge branch 'translation' into staging
[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.14.2"
8
9 \header {
10   lsrtags = "really-simple, tweaks-and-overrides, editorial-annotations"
11
12 %% Translation of GIT committish: b482c3e5b56c3841a88d957e0ca12964bd3e64fa
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 %% Translation of GIT committish: 85394d425536d267ed0cb71d17023849f1611180
22   texidocfr = "
23 Les crochets d'analyse viennent par défaut se positionner au-dessous de
24 la portée.  L'exemple suivant vous indique comment les faire apparaître
25 en surplomb de la portée.
26
27 "
28   doctitlefr = "Crochets d'analyse au-dessus de la portée"
29
30   texidoc = "
31 Simple horizontal analysis brackets are added below the staff by
32 default. The following example shows a way to place them above the
33 staff instead.
34
35 "
36   doctitle = "Analysis brackets above the staff"
37 } % begin verbatim
38
39
40 \layout {
41   \context {
42     \Voice
43     \consists "Horizontal_bracket_engraver"
44   }
45 }
46 \relative c'' {
47   \once \override HorizontalBracket #'direction = #UP
48   c2\startGroup
49   d2\stopGroup
50 }
51