%% Generated by lilypond-book
%% Options: [exampleindent=10.16\mm,indent=0\mm,line-width=160\mm,paper-height=845.047\pt,paper-width=597.508\pt,papersize='(cons (* 597.508 pt) (* 845.047 pt))]
\include "lilypond-book-preamble.ly"


% ****************************************************************
% Start cut-&-pastable-section
% ****************************************************************

#(ly:set-option 'eps-box-padding 3.000000)



\paper {
  #(set-paper-size '(cons (* 597.508 pt) (* 845.047 pt)))
  indent = 0\mm
  line-width = 160\mm
  % offset the left padding, also add 1mm as lilypond creates cropped
  % images with a little space on the right
  line-width = #(- line-width (* mm  3.000000) (* mm 1))
}

\layout {
  
}




% ****************************************************************
% ly snippet:
% ****************************************************************
\sourcefilename "snippets/permitting-line-breaks-within-beamed-tuplets.ly"
\sourcefileline 0
%% DO NOT EDIT this file manually; it was automatically
%% generated from the LilyPond Wiki
%% (https://wiki.lilypond.community).
%%
%% Make any changes in the Wiki itself, or in
%% `Documentation/snippets/new/`, then run
%% `scripts/auxiliar/makelsr.pl`.
%%
%% This file is in the public domain.

\version "2.24.0"

\header {
%% Translation of GIT committish: a8a85e19654e46d725563e6deba44083ef137a2c
  texidocja = "
この作為的な例は、連桁で繋がれた連符の途中で手動あるいは自動の改行を@c
許可する方法を示しています。ただし、拍に収まらない連符は手動で連桁を@c
繋ぐ必要があります。
"
  doctitleja = "連桁で繋がれた連符の途中で改行する"

%% Translation of GIT committish: 2f3474d9af596d677ed5b7ce720ae4d0954a6b51
  texidocit = "
Questo esempio artificioso mostra come permettere interruzioni del rigo sia
manuali che automatiche all'interno di un gruppo irregolare con travature.
Si noti che le travature di questi gruppi irregolari fuori dal ritmo devono
essere disposte manualmente.

"
  doctitleit = "Consentire l'interruzione del rigo all'interno di gruppi irregolari con travature"

%% Translation of GIT committish: de1e42ce512f3690387cdd065109bddff1b7bd6d
  texidocfr = "
Ces exemples peu académiques démontrent comment il est possible d'insérer un
saut de ligne dans un n-olet portant une ligature et qui ne sauraient se
découper de manière exacte.

Cette fonctionnalité n'est opérationnelle qu'avec des ligatures
manuelles.
"

  doctitlefr = "Saut de ligne au milieu d'un n-olet avec ligature"

%% Translation of GIT committish: e57447fe9c53034c997759bff512fa0130b3a6ee
  doctitlees = "Permitir saltos de línea dentro de grupos especiales con barra"
  texidoces = "
Estos ejemplos artificiales muestran cómo se pueden permitir tanto
los saltos de línea manuales como los automáticos dentro de un
grupo de valoración especial unido por una barra que no se puede
dividir en una duración de manera exacta.

Esta funcionalidad solo funciona con grupos de valoración especial
barrados manualmente.
"

%% Translation of GIT committish: 0a868be38a775ecb1ef935b079000cebbc64de40
  texidocde = "
Dieses künstliche Beispiel zeigt, wie sowohl automatische als auch
manuelle Zeilenumbrüche innerhalb einer N-tole mit Balken erlaubt
werden können.  Diese unregelmäßige Bebalkung muss allerdings manuell
gesetzt werden.

"
  doctitlede = "Zeilenumbrüche bei N-tolen mit Balken erlauben"



%% Translation of GIT committish: 8ffecf6be17c6ec2ff87cf31873121a8cce29b09
  doctitleca = "Permetre salts de línia dins de grups especials amb barra"
  texidocca = "
Aquest exemple artificial mostra com es poden permetre tant els salts
de línia manuals com els automàtics dins d'un grup de valoració
especial unit per una barra.  Observeu que aquests grups sincopats
s'han de barrar manualment.

"

  categories = "Contexts and engravers, Rhythms"

  texidoc = "
These artificial examples show how both manual and automatic line
breaks may be permitted within beamed tuplets that can't be
rhythmically split in an exact way.

This feature only works with manually beamed tuplets.
"

  doctitle = "Permitting line breaks within beamed tuplets"
} % begin verbatim


\layout {
  \context {
    \Voice
    % Permit automatic line breaks within tuplets.
    \remove "Forbid_line_break_engraver"
    % Allow beams to be broken at line breaks.
    \override Beam.breakable = ##t
  }
}

\relative c'' {
  <>^"manually forced line break"
  a8
  \repeat unfold 5 { \tuplet 3/2 { c8[ b g16 a] } }
  \tuplet 3/2 { c8[ b \break g16 a] }
  \repeat unfold 5 { \tuplet 3/2 { c8[ b g16 a] } }
  c8 \bar "||"
}

\relative c'' {
  <>^"automatic line break"
  \repeat unfold 28 a16
  \tuplet 11/8 { a16[ b c d e f e d c b a] }
  \repeat unfold 28 a16 \bar "||"
}



% ****************************************************************
% end ly snippet
% ****************************************************************
