]> git.donarmstrong.com Git - lilypond.git/blob - Documentation/snippets/beams-across-line-breaks.ly
Doc: Update LSR.
[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: d2119a9e5e951c6ae850322f41444ac98d1ed492
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 %% Translation of GIT committish: 0a868be38a775ecb1ef935b079000cebbc64de40
19 texidocde = "
20 Zeilenumbrüche sind normalerweise während Balken verboten.  Das kann geändert
21 werden.
22
23 "
24   doctitlede = "Balken über Zeilenumbrüche"
25
26
27 %% Translation of GIT committish: 708e0d9c660856b19929736ca18a6f9d68539c60
28
29   texidocfr = "
30 Il est normalement impensable qu'un saut de ligne tombe au milieu d'une
31 ligature.  LilyPond permet néanmoins de l'obtenir.
32
33 "
34   doctitlefr = "Ligature au moment d'un saut de ligne"
35
36   texidoc = "
37 Line breaks are normally forbidden when beams cross bar lines. This
38 behavior can be changed as shown:
39
40 "
41   doctitle = "Beams across line breaks"
42 } % begin verbatim
43
44 \relative c'' {
45   \override Beam #'breakable = ##t
46   c8 c[ c] c[ c] c[ c] c[ \break
47   c8] c[ c] c[ c] c[ c] c
48 }
49
50