]> git.donarmstrong.com Git - lilypond.git/blob - input/lsr/ottava-text.ly
Add a TODO comment re grace note spacing.
[lilypond.git] / input / lsr / ottava-text.ly
1 %% Do not edit this file; it is auto-generated from LSR http://lsr.dsi.unimi.it
2 %% This file is in the public domain.
3 \version "2.11.35"
4
5 \header {
6   lsrtags = "pitches, text"
7  texidoc = "
8 Internally, the set-octavation function sets the properties
9 @code{ottavation} (e.g., to @code{\"8va\"} or @code{\"8vb\"}) and
10 @code{middleCPosition}.  To override the text of the bracket, set
11 @code{ottavation} after invoking @code{set-octavation}, like in the
12 following example. 
13 " }
14 % begin verbatim
15 {
16   #(set-octavation 1)
17   \set Staff.ottavation = #"8"
18   c''1
19   #(set-octavation 0)
20   c'1
21   #(set-octavation 1)
22   \set Staff.ottavation = #"Text"
23   c''1
24 }