]> git.donarmstrong.com Git - lilypond.git/blob - input/lsr/ottava-text.ly
LSR: normal update.
[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 %% Tags: pitches, text
4 \version "2.11.35"
5
6 \header { texidoc = "
7 Internally, the set-octavation function sets the properties
8 @code{ottavation} (e.g., to @code{\"8va\"} or @code{\"8vb\"}) and
9 @code{middleCPosition}.  To override the text of the bracket, set
10 @code{ottavation} after invoking @code{set-octavation}, like in the
11 following example. 
12 " }
13 % begin verbatim
14 {
15   #(set-octavation 1)
16   \set Staff.ottavation = #"8"
17   c''1
18   #(set-octavation 0)
19   c'1
20   #(set-octavation 1)
21   \set Staff.ottavation = #"Text"
22   c''1
23 }