]> git.donarmstrong.com Git - lilypond.git/blob - Documentation/snippets/ottava-text.ly
Run scripts/auxiliar/update-with-convert-ly.sh
[lilypond.git] / Documentation / snippets / ottava-text.ly
1 %% DO NOT EDIT this file manually; it is automatically
2 %% generated from LSR http://lsr.dsi.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.16.0"
8
9 \header {
10   lsrtags = "pitches, text"
11
12   texidoc = "
13 Internally, @code{\\ottava} sets the properties @code{ottavation} (for
14 example, to @code{8va} or @code{8vb}) and @code{middleCPosition}.  To
15 override the text of the bracket, set @code{ottavation} after invoking
16 @code{\\ottava}.
17
18 "
19   doctitle = "Ottava text"
20 } % begin verbatim
21
22
23 {
24   \ottava #1
25   \set Staff.ottavation = #"8"
26   c''1
27   \ottava #0
28   c'1
29   \ottava #1
30   \set Staff.ottavation = #"Text"
31   c''1
32 }