]> git.donarmstrong.com Git - lilypond.git/blob - Documentation/snippets/printing-marks-on-every-staff.ly
Docs: run convert-ly for 2.14.0.
[lilypond.git] / Documentation / snippets / printing-marks-on-every-staff.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 = "text"
11
12 %% Translation of GIT committish: 59caa3adce63114ca7972d18f95d4aadc528ec3d
13   texidoces = "
14 Aunque normalmente las marcas de texto sólo se imprimen sobre el
15 pentagrama superior, también se pueden imprimir en otro pentagrama
16 cualquiera.
17
18 "
19   doctitlees = "Imprimir marcas en cualquier pentagrama"
20
21
22 %% Translation of GIT committish: 0a868be38a775ecb1ef935b079000cebbc64de40
23   texidocde = "
24 Normalerweise werden Textzeichen nur über dem obersten Notensystem gesetzt.  Sie
25 können aber auch über jedem System ausgegeben werden.
26
27 "
28   doctitlede = "Zeichen über jedem System ausgeben"
29
30 %% Translation of GIT committish: 548ef200973bd3d46ea75c5498461d9e5f168334
31   texidocfr = "
32 Bien que ces indications textuelles ne soient habituellement imprimées
33 qu'au niveau de la portée supérieure, vous pouvez forcer leur
34 affectation à chacune des portées.
35
36 "
37   doctitlefr = "Impression des indications sur toutes les portées d'un système"
38
39
40   texidoc = "
41 Although text marks are normally only printed above the topmost staff,
42 they may also be printed on every staff.
43
44 "
45   doctitle = "Printing marks on every staff"
46 } % begin verbatim
47
48 \score {
49   <<
50     \new Staff { c''1 \mark "molto" c'' }
51     \new Staff { c'1 \mark "molto" c' }
52   >>
53   \layout {
54     \context {
55       \Score
56       \remove "Mark_engraver"
57       \remove "Staff_collecting_engraver"
58     }
59     \context {
60       \Staff
61       \consists "Mark_engraver"
62       \consists "Staff_collecting_engraver"
63     }
64   }
65 }
66