]> 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} (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
15 " }
16 % begin verbatim
17 {
18   #(set-octavation 1)
19   \set Staff.ottavation = #"8"
20   c''1
21   #(set-octavation 0)
22   c'1
23   #(set-octavation 1)
24   \set Staff.ottavation = #"Text"
25   c''1
26 }