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