]> git.donarmstrong.com Git - lilypond.git/blob - Documentation/snippets/printing-marks-on-every-staff.ly
83e231c82b38e3c2936afe1ee2096659f9b5a5b8
[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.2"
8
9 \header {
10   lsrtags = "text"
11
12 %% Translation of GIT committish: b482c3e5b56c3841a88d957e0ca12964bd3e64fa
13   texidoces = "
14 Aunque normalmente las marcas de ensayo textuales sólo se imprimen
15 sobre el pentagrama superior, también se pueden imprimir en otro
16 pentagrama cualquiera.
17
18 "
19   doctitlees = "Imprimir marcas de ensayo 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: 28097cf54698db364afeb75658e4c8e0e0ccd716
31   texidocfr = "
32 Bien que ces indications textuelles ne soient habituellement imprimées
33 qu'au niveau de la portée supérieure d'un système, leur affectation peut
34 être répecutée à chacune des portées.
35
36 "
37   doctitlefr = "Impression des indications sur toutes les portées d'un système"
38
39   texidoc = "
40 Although text marks are normally only printed above the topmost staff,
41 they may also be printed on every staff.
42
43 "
44   doctitle = "Printing marks on every staff"
45 } % begin verbatim
46
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