%% 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/creating-cross-staff-arpeggios-in-a-piano-staff.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 = "
@code{PianoStaff} 内では、@code{PianoStaff.connectArpeggios} プロパティを@c
セットすることで、譜をまたがるアルペジオを作成することができます。
"
  doctitleja = "ピアノ譜で譜をまたがるアルペジオを作成する"

%% Translation of GIT committish: 2f3474d9af596d677ed5b7ce720ae4d0954a6b51
  texidocit = "
In un rigo per pianoforte (@code{PianoStaff}), è possibile far sì che un
@emph{arpeggio} attraversi i righi impostando la proprietà @code{PianoStaff.connectArpeggios}.

"
  doctitleit = "Creare degli arpeggi che attraversano il rigo del pianoforte"

%% Translation of GIT committish: de1e42ce512f3690387cdd065109bddff1b7bd6d
  texidocfr = "
Dans une double portée pour piano (@code{PianoStaff}), un arpège peut
s'étendre sur les deux portées grâce à la propriété
@code{PianoStaff.connectArpeggios}.
"

  doctitlefr = "Arpège distribué sur une partition pour piano"

%% Translation of GIT committish: 1bf2403e1cd7038a1e7ea62da560af601e3694fc
  texidoces = "
Dentro de un @code{PianoStaff}, es posible hacer que un arpegio
cruce entre los pentagramas ajustando la propiedad
@code{PianoStaff.connectArpeggios}.
"
  doctitlees = "Crear arpegios que se cruzan entre pentagramas dentro de un sistema de piano"

%% Translation of GIT committish: 0a868be38a775ecb1ef935b079000cebbc64de40
texidocde = "
Arpeggio über mehrere Systeme können in anderen Kontexten als dem
@code{PianoStaff} erstellt werden, wenn der @code{Span_arpeggio_engraver}
in den @code{Score}-Kontext eingefügt wird.

"
  doctitlede = "Arpeggio über mehrere Systeme in anderen Kontexten"

%% Translation of GIT committish: 8ffecf6be17c6ec2ff87cf31873121a8cce29b09
  texidocca = "
Dins d'un @code{PianoStaff}, és possible fer que un arpegi creuï
entre els pentagrames ajustant la propietat
@code{PianoStaff.connectArpeggios}.

"
  doctitleca = "Crear arpegis que es creuen entre pentagrames dins d'un sistema de piano"


  categories = "Expressive marks"

  texidoc = "
In a @code{PianoStaff} it is possible to let an @emph{arpeggio} cross
between the staves by setting the property
@code{PianoStaff.connectArpeggios}.
"

  doctitle = "Creating cross-staff arpeggios in a piano staff"
} % begin verbatim


\new PianoStaff \relative c'' <<
  \set PianoStaff.connectArpeggios = ##t
  \new Staff {
    <c e g c>4\arpeggio
    <g c e g>4\arpeggio
    <e g c e>4\arpeggio
    <c e g c>4\arpeggio
  }
  \new Staff {
    \clef bass
    \repeat unfold 4 {
      <c,, e g c>4\arpeggio
    }
  }
>>



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