]> git.donarmstrong.com Git - lilypond.git/blob - Documentation/snippets/beams-across-line-breaks.ly
Change stringTunings from list of semitones to list of pitches
[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.39"
5
6 \header {
7   lsrtags = "rhythms"
8
9 %% Translation of GIT committish: a874fda3641c9e02f61be5c41b215b8304b8ed00
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: 0a868be38a775ecb1ef935b079000cebbc64de40
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: 708e0d9c660856b19929736ca18a6f9d68539c60
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