]> git.donarmstrong.com Git - lilypond.git/blob - Documentation/snippets/removing-bar-numbers-from-a-score.ly
Merge branch 'lilypond/translation' of ssh://git.sv.gnu.org/srv/git/lilypond into...
[lilypond.git] / Documentation / snippets / removing-bar-numbers-from-a-score.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 %% Translation of GIT committish: 21c8461ea87cd670a35a40b91d3ef20de03a0409
7   texidocfr = "
8 Désactiver le graveur concerné --- @code{Bar_number_engraver} --- 
9 donnera une partition  --- contexte @code{Score} --- sans numéros de 
10 mesure.
11
12 "
13   doctitlefr = "Supprimer les numéros de mesure d'une partition"
14
15
16   lsrtags = "rhythms, contexts-and-engravers"
17
18 %% Translation of GIT committish: b2d4318d6c53df8469dfa4da09b27c15a374d0ca
19   texidoces = "
20
21 Se pueden eliminar completamente los números de compás quitando el
22 grabador @code{Bar_number_engraver} del contexto de @code{Score}.
23
24 "
25
26   doctitlees = "Suprimir los números de compás de toda la partitura"
27
28
29 %% Translation of GIT committish: d96023d8792c8af202c7cb8508010c0d3648899d 
30   texidocde = "
31 Taktnummern können vollkommen aus den Noten entfernt werden, indem
32 man den @code{Bar_number_engraver} aus dem @code{Score}-Kontext
33 entfernt.
34
35 "
36   doctitlede = "Entfernung von Taktnummern in einer Partitur"
37
38
39
40   texidoc = "
41 Bar numbers can be removed entirely by removing the
42 @code{Bar_number_engraver} from the @code{Score} context.
43
44 "
45   doctitle = "Removing bar numbers from a score"
46 } % begin verbatim
47
48 \layout {
49   \context {
50     \Score
51     \remove "Bar_number_engraver"
52   }
53 }
54
55 \relative c'' {
56   c4 c c c \break
57   c4 c c c
58 }
59