]> git.donarmstrong.com Git - lilypond.git/blob - Documentation/snippets/analysis-brackets-above-the-staff.ly
Add '-dcrop' option to ps and svg backends
[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.di.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.18.0"
8
9 \header {
10   lsrtags = "editorial-annotations, really-simple, tweaks-and-overrides"
11
12   texidoc = "
13 Simple horizontal analysis brackets are added below the staff by
14 default. The following example shows a way to place them above the
15 staff instead.
16
17 "
18   doctitle = "Analysis brackets above the staff"
19 } % begin verbatim
20
21 \layout {
22   \context {
23     \Voice
24     \consists "Horizontal_bracket_engraver"
25   }
26 }
27
28 \relative c'' {
29   \once \override HorizontalBracket.direction = #UP
30   c2\startGroup
31   d2\stopGroup
32 }