]> git.donarmstrong.com Git - lilypond.git/blob - Documentation/snippets/beams-across-line-breaks.ly
Merge branch 'lilypond/translation' of ssh://git.sv.gnu.org/srv/git/lilypond
[lilypond.git] / Documentation / snippets / beams-across-line-breaks.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.16"
5
6 \header {
7   lsrtags = "rhythms"
8
9 %% Translation of GIT committish: 00ef2ac3dd16e21c9ffdffaa4d6d043a3f1a76e6
10   texidoces = "
11 Normalmente están prohibidos los saltos de línea si las barras
12 atraviesan las líneas divisorias.  Se puede cambiar este
13 comportamiento como se muestra aquí:
14
15 "
16   doctitlees = "Barras que atraviesan saltos de línea"
17
18
19 %% Translation of GIT committish: d96023d8792c8af202c7cb8508010c0d3648899d
20 texidocde = "
21 Zeilenumbrüche sind normalerweise während Balken verboten.  Das kann geändert
22 werden.
23
24 "
25   doctitlede = "Balken über Zeilenumbrüche"
26
27
28
29 %% Translation of GIT committish: b3196fadd8f42d05ba35e8ac42f7da3caf8a3079
30
31   texidocfr = "
32 Il est normalement impensable qu'un saut de ligne tombe au milieu d'une
33 ligature.  LilyPond permet néanmoins de l'obtenir.
34
35 "
36   doctitlefr = "Ligature au moment d'un saut de ligne"
37
38   texidoc = "
39 Line breaks are normally forbidden when beams cross bar lines. This
40 behavior can be changed as shown:
41
42 "
43   doctitle = "Beams across line breaks"
44 } % begin verbatim
45
46 \relative c'' {
47   \override Beam #'breakable = ##t
48   c8 c[ c] c[ c] c[ c] c[ \break
49   c8] c[ c] c[ c] c[ c] c
50 }
51
52