]> git.donarmstrong.com Git - lilypond.git/blobdiff - Documentation/snippets/analysis-brackets-above-the-staff.ly
Imported Upstream version 2.14.2
[lilypond.git] / Documentation / snippets / analysis-brackets-above-the-staff.ly
diff --git a/Documentation/snippets/analysis-brackets-above-the-staff.ly b/Documentation/snippets/analysis-brackets-above-the-staff.ly
new file mode 100644 (file)
index 0000000..75aa9b1
--- /dev/null
@@ -0,0 +1,41 @@
+%% DO NOT EDIT this file manually; it is automatically
+%% generated from LSR http://lsr.dsi.unimi.it
+%% Make any changes in LSR itself, or in Documentation/snippets/new/ ,
+%% and then run scripts/auxiliar/makelsr.py
+%%
+%% This file is in the public domain.
+\version "2.14.0"
+
+\header {
+  lsrtags = "editorial-annotations, tweaks-and-overrides"
+
+%% Translation of GIT committish: 70f5f30161f7b804a681cd080274bfcdc9f4fe8c
+  texidoces = "
+De forma predeterminada se añaden corchetes de análisis sencillos
+debajo del pentagrama.  El ejemplo siguiente muestra una manera de
+colocarlos por encima.
+
+"
+  doctitlees = "Corchetes de análisis encima del pentagrama"
+
+  texidoc = "
+Simple horizontal analysis brackets are added below the staff by
+default. The following example shows a way to place them above the
+staff instead.
+
+"
+  doctitle = "Analysis brackets above the staff"
+} % begin verbatim
+
+\layout {
+  \context {
+    \Voice
+    \consists "Horizontal_bracket_engraver"
+  }
+}
+\relative c'' {
+  \once \override HorizontalBracket #'direction = #UP
+  c2\startGroup
+  d2\stopGroup
+}
+