]> git.donarmstrong.com Git - lilypond.git/blob - Documentation/snippets/clefs-can-be-transposed-by-arbitrary-amounts.ly
Merge branch 'master' into lilypond/translation
[lilypond.git] / Documentation / snippets / clefs-can-be-transposed-by-arbitrary-amounts.ly
1 %% Do not edit this file; it is automatically
2 %% generated from LSR http://lsr.dsi.unimi.it
3 %% This file is in the public domain.
4 \version "2.12.2"
5
6 \header {
7   lsrtags = "pitches"
8
9   texidoc = "
10 Clefs can be transposed by arbitrary amounts, not just by octaves.
11
12 "
13   doctitle = "Clefs can be transposed by arbitrary amounts"
14 } % begin verbatim
15
16 \relative c' {
17   \clef treble
18   c4 c c c
19   \clef "treble_8"
20   c4 c c c
21   \clef "treble_5"
22   c4 c c c
23   \clef "treble^3"
24   c4 c c c
25 }
26