]> git.donarmstrong.com Git - lilypond.git/blob - Documentation/snippets/beams-across-line-breaks.ly
af3989917968532440f81f138824cc4ec89d2771
[lilypond.git] / Documentation / snippets / beams-across-line-breaks.ly
1 %% DO NOT EDIT this file manually; it is automatically
2 %% generated from LSR http://lsr.dsi.unimi.it
3 %% Make any changes in LSR itself, or in Documentation/snippets/new/ ,
4 %% and then run scripts/auxiliar/makelsr.py
5 %%
6 %% This file is in the public domain.
7 \version "2.14.2"
8
9 \header {
10   lsrtags = "rhythms"
11
12 %% Translation of GIT committish: 6977ddc9a3b63ea810eaecb864269c7d847ccf98
13   texidoces = "
14 Normalmente están prohibidos los saltos de línea si las barras
15 atraviesan las líneas divisorias.  Se puede cambiar este
16 comportamiento como se muestra aquí:
17
18 "
19   doctitlees = "Barras que atraviesan saltos de línea"
20
21
22 %% Translation of GIT committish: 0a868be38a775ecb1ef935b079000cebbc64de40
23 texidocde = "
24 Zeilenumbrüche sind normalerweise während Balken verboten.  Das kann geändert
25 werden.
26
27 "
28   doctitlede = "Balken über Zeilenumbrüche"
29
30
31
32 %% Translation of GIT committish: 3b125956b08d27ef39cd48bfa3a2f1e1bb2ae8b4
33   texidocfr = "
34 Il est normalement impensable qu'un saut de ligne tombe au milieu d'une
35 ligature.  LilyPond permet néanmoins de l'obtenir.
36
37 "
38   doctitlefr = "Ligature au moment d'un saut de ligne"
39
40   texidoc = "
41 Line breaks are normally forbidden when beams cross bar lines. This
42 behavior can be changed as shown:
43
44 "
45   doctitle = "Beams across line breaks"
46 } % begin verbatim
47
48
49 \relative c'' {
50   \override Beam #'breakable = ##t
51   c8 c[ c] c[ c] c[ c] c[ \break
52   c8] c[ c] c[ c] c[ c] c
53 }
54
55