]> git.donarmstrong.com Git - lilypond.git/blob - Documentation/snippets/forcing-rehearsal-marks-to-start-from-a-given-letter-or-number.ly
b1a91cac88b228ae6bec958e02b9252b818e8206
[lilypond.git] / Documentation / snippets / forcing-rehearsal-marks-to-start-from-a-given-letter-or-number.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 = "really-simple, automatic-notation, rhythms, preparing-parts"
11
12 %% Translation of GIT committish: 30339cb3706f6399c84607426988b25f79b4998c
13   texidocfr = "
14 Voici comment initialiser arbitrairement une indication automatique de
15 repère, qu'elle soit alphabétique ou numérique :
16
17 "
18   doctitlefr = "Fixation arbitraire du numéro de repère de départ"
19
20   texidoc = "
21 This snippet demonstrates how to obtain automatic ordered rehearsal
22 marks, but from the letter or number desired.
23
24 "
25   doctitle = "Forcing rehearsal marks to start from a given letter or number"
26 } % begin verbatim
27
28
29 \relative c'' {
30   c1 \mark \default
31   c1 \mark \default
32   c1 \mark \default
33   c1 \mark #14
34   c1 \mark \default
35   c1 \mark \default
36   c1 \mark \default
37   c1 \mark \default
38   \break
39   \set Score.markFormatter = #format-mark-numbers
40   c1 \mark #1
41   c1 \mark \default
42   c1 \mark \default
43   c1 \mark \default
44   c1 \mark #14
45   c1 \mark \default
46   c1 \mark \default
47   c1 \mark \default
48   c1 \mark \default
49 }
50