]> git.donarmstrong.com Git - lilypond.git/blob - Documentation/snippets/clefs-can-be-transposed-by-arbitrary-amounts.ly
Docs: run convert-ly for 2.14.0.
[lilypond.git] / Documentation / snippets / clefs-can-be-transposed-by-arbitrary-amounts.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.14.0"
8
9 \header {
10   lsrtags = "pitches"
11
12   texidoc = "
13 Clefs can be transposed by arbitrary amounts, not just by octaves.
14
15 "
16   doctitle = "Clefs can be transposed by arbitrary amounts"
17 } % begin verbatim
18
19 \relative c' {
20   \clef treble
21   c4 c c c
22   \clef "treble_8"
23   c4 c c c
24   \clef "treble_5"
25   c4 c c c
26   \clef "treble^3"
27   c4 c c c
28 }
29