]> git.donarmstrong.com Git - lilypond.git/blob - Documentation/snippets/printing-marks-on-every-staff.ly
Merge branch 'lilypond/translation' of ssh://jomand@git.sv.gnu.org/srv/git/lilypond
[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   lsrtags = "text"
8
9 %% Translation of GIT committish: b2d4318d6c53df8469dfa4da09b27c15a374d0ca
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: d96023d8792c8af202c7cb8508010c0d3648899d
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   texidoc = "
28 Although text marks are normally only printed above the topmost staff,
29 they may also be printed on every staff.
30
31 "
32   doctitle = "Printing marks on every staff"
33 } % begin verbatim
34
35 \score {
36   <<
37     \new Staff { c''1 \mark "molto" c'' }
38     \new Staff { c'1 \mark "molto" c' }
39   >>
40   \layout {
41     \context {
42       \Score
43       \remove "Mark_engraver"
44       \remove "Staff_collecting_engraver"
45     }
46     \context {
47       \Staff
48       \consists "Mark_engraver"
49       \consists "Staff_collecting_engraver"
50     }
51   }
52 }
53