]> git.donarmstrong.com Git - lilypond.git/blob - Documentation/snippets/clefs-can-be-transposed-by-arbitrary-amounts.ly
Update snippets from today's LSR with changed makelsr.py
[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.2"
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
20 \relative c' {
21   \clef treble
22   c4 c c c
23   \clef "treble_8"
24   c4 c c c
25   \clef "treble_5"
26   c4 c c c
27   \clef "treble^3"
28   c4 c c c
29 }