]> git.donarmstrong.com Git - lilypond.git/blob - input/lsr/ottava-text.ly
Merge branch 'lilypond/translation' of ssh://jomand@git.sv.gnu.org/srv/git/lilypond
[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.38"
4
5 \header {
6   lsrtags = "pitches, text"
7  texidoc = "
8 Internally, the @code{set-octavation} function sets the properties
9 @code{ottavation} (for example, to @code{\"8va\"} or @code{\"8vb\"})
10 and @code{middleCPosition}. To override the text of the bracket, set
11 @code{ottavation} after invoking @code{set-octavation}.
12
13
14 " }
15 % begin verbatim
16 {
17   #(set-octavation 1)
18   \set Staff.ottavation = #"8"
19   c''1
20   #(set-octavation 0)
21   c'1
22   #(set-octavation 1)
23   \set Staff.ottavation = #"Text"
24   c''1
25 }