]> git.donarmstrong.com Git - lilypond.git/blob - Documentation/snippets/clefs-can-be-transposed-by-arbitrary-amounts.ly
Merge branch 'translation' into staging
[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 %% Translation of GIT committish: 1cda7b7b8219cb97399b8e7b56c1115aaf82c002
11   texidocfr = "
12 Les clefs peuvent être transposées d'un intervalle différent de l'octave.
13
14 "
15   doctitlefr = "Transposition arbitraire d'une clef"
16
17   lsrtags = "pitches"
18
19   texidoc = "
20 Clefs can be transposed by arbitrary amounts, not just by octaves.
21
22 "
23   doctitle = "Clefs can be transposed by arbitrary amounts"
24 } % begin verbatim
25
26
27 \relative c' {
28   \clef treble
29   c4 c c c
30   \clef "treble_8"
31   c4 c c c
32   \clef "treble_5"
33   c4 c c c
34   \clef "treble^3"
35   c4 c c c
36 }
37