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