]> git.donarmstrong.com Git - lilypond.git/blob - input/lsr/printing-the-bar-number-for-the-first-measure.ly
Merge commit 'origin'
[lilypond.git] / input / lsr / printing-the-bar-number-for-the-first-measure.ly
1 %% Do not edit this file; it is auto-generated from input/new
2 %% This file is in the public domain.
3 %% Note: this file works from version 2.12.1
4 \version "2.13.1"
5
6 \header {
7   texidoces = "
8
9 De forma predeterminada se suprime el número del primer compás de
10 una partitura si es menor o igual a `1'.  Al establecer el valor
11 de @code{barNumberVisibility} a @code{all-bar-numbers-visible}, se
12 puede imprimir cualquier número de compás para el primer compás y
13 todos los siguientes.  Observe que, para que esto funcione, se
14 debe insertar una líinea divisoria vacía antes de la primera nota.
15
16 "
17
18   doctitlees = "Imprimir el número de compás en el primer compás"
19
20   lsrtags = "rhythms"
21
22   texidoc = "
23 By default, the first bar number in a score is suppressed if it is
24 less than or equal to `1'.  By setting @code{barNumberVisibility}
25 to @code{all-bar-numbers-visible}, any bar number can be printed
26 for the first measure and all subsequent measures.  Note that an
27 empty bar line must be inserted before the first note for this to
28 work.
29
30 "
31   doctitle = "Printing the bar number for the first measure"
32 } % begin verbatim
33
34
35 \relative c' {
36   \set Score.barNumberVisibility = #all-bar-numbers-visible
37   \bar ""
38   c1 d e f \break
39   g1 e d c
40 }