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