]> git.donarmstrong.com Git - lilypond.git/blob - Documentation/snippets/beams-across-line-breaks.ly
b8696b4bf1525c1002825204afb098706646e0a1
[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.12.2"
8
9 \header {
10   lsrtags = "rhythms"
11
12 %% Translation of GIT committish: 59caa3adce63114ca7972d18f95d4aadc528ec3d
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: 708e0d9c660856b19929736ca18a6f9d68539c60
33
34   texidocfr = "
35 Il est normalement impensable qu'un saut de ligne tombe au milieu d'une
36 ligature.  LilyPond permet néanmoins de l'obtenir.
37
38 "
39   doctitlefr = "Ligature au moment d'un saut de ligne"
40
41   texidoc = "
42 Line breaks are normally forbidden when beams cross bar lines. This
43 behavior can be changed as shown:
44
45 "
46   doctitle = "Beams across line breaks"
47 } % begin verbatim
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