]> git.donarmstrong.com Git - lilypond.git/blob - Documentation/snippets/printing-marks-on-every-staff.ly
Merge branch 'lilypond/translation' of ssh://git.sv.gnu.org/srv/git/lilypond into...
[lilypond.git] / Documentation / snippets / printing-marks-on-every-staff.ly
1 %% Do not edit this file; it is auto-generated from LSR http://lsr.dsi.unimi.it
2 %% This file is in the public domain.
3 \version "2.13.1"
4
5 \header {
6   lsrtags = "text"
7
8 %% Translation of GIT committish: b2d4318d6c53df8469dfa4da09b27c15a374d0ca
9   texidoces = "
10 Aunque normalmente las marcas de texto sólo se imprimen sobre el
11 pentagrama superior, también se pueden imprimir en otro pentagrama
12 cualquiera.
13
14 "
15   doctitlees = "Imprimir marcas en cualquier pentagrama"
16
17 %% Translation of GIT committish: d96023d8792c8af202c7cb8508010c0d3648899d
18   texidocde = "
19 Normalerweise werden Textzeichen nur über dem obersten Notensystem gesetzt.  Sie
20 können aber auch über jedem System ausgegeben werden.
21
22 "
23   doctitlede = "Zeichen über jedem System ausgeben"
24
25   texidoc = "
26 Although text marks are normally only printed above the topmost staff,
27 they may also be printed on every staff.
28
29 "
30   doctitle = "Printing marks on every staff"
31 } % begin verbatim
32
33 \score {
34   <<
35     \new Staff { c''1 \mark "molto" c'' }
36     \new Staff { c'1 \mark "molto" c' }
37   >>
38   \layout {
39     \context {
40       \Score
41       \remove "Mark_engraver"
42       \remove "Staff_collecting_engraver"
43     }
44     \context {
45       \Staff
46       \consists "Mark_engraver"
47       \consists "Staff_collecting_engraver"
48     }
49   }
50 }
51