]> 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 %% Translation of GIT committish: 85394d425536d267ed0cb71d17023849f1611180
11   texidocfr = "
12 Les crochets d'analyse viennent par défaut se positionner au-dessous de
13 la portée.  L'exemple suivant vous indique comment les faire apparaître
14 en surplomb de la portée.
15
16 "
17   doctitlefr = "Crochets d'analyse au-dessus de la portée"
18
19   lsrtags = "editorial-annotations, tweaks-and-overrides, really-simple"
20
21
22 %% Translation of GIT committish: b482c3e5b56c3841a88d957e0ca12964bd3e64fa
23   texidoces = "
24 De forma predeterminada se añaden corchetes de análisis sencillos
25 debajo del pentagrama.  El ejemplo siguiente muestra una manera de
26 colocarlos por encima.
27
28 "
29   doctitlees = "Corchetes de análisis encima del pentagrama"
30
31   texidoc = "
32 Simple horizontal analysis brackets are added below the staff by
33 default. The following example shows a way to place them above the
34 staff instead.
35
36 "
37   doctitle = "Analysis brackets above the staff"
38 } % begin verbatim
39
40
41 \layout {
42   \context {
43     \Voice
44     \consists "Horizontal_bracket_engraver"
45   }
46 }
47 \relative c'' {
48   \once \override HorizontalBracket #'direction = #UP
49   c2\startGroup
50   d2\stopGroup
51 }
52