%% 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/mensurstriche-layout-bar-lines-between-the-staves.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 = "
Mensurstriche (計量音楽風の) レイアウトでは、小節線を譜の中には表示せず、@c
譜と譜の間に表示します。これは、@code{ChoirStaff} の代わりに @code{StaffGroup}
を用いることで実現できます。譜の中にある小節線は @code{\\hide} で@c
非表示にします。
"
  doctitleja = "Mensurstriche レイアウト (譜の間に小節線を表示する)"

%% Translation of GIT committish: 2f3474d9af596d677ed5b7ce720ae4d0954a6b51
  texidocit = "
La formattazione mensurale, in cui le stanghette non appaiono sui righi ma
nello spazio tra i righi, si può ottenere usando @code{StaffGroup} al posto
di @code{ChoirStaff}.  La stanghetta sui righi viene nascosta con
@code{\\hide}.

"
  doctitleit = "Formattazione mensurale (stanghette tra i righi)"

%% Translation of GIT committish: de1e42ce512f3690387cdd065109bddff1b7bd6d
  texidocfr = "
En musique mensurale, les barres de mesure ne traversent pas les
portées. Pour obtenir ce résultat il faudra définir
@code{measureBarType} à @code{\"-span|\"} et utiliser un regroupement de
portées permettant l'extension des barres entre les portées, tel un
@code{StaffGroup}.
"

  doctitlefr = "Présentation à l'ancienne (barres de mesure entre les portées)"

%% Translation of GIT committish: 4f16fa98fd258f08e64203c793028ea3e363b1c0
  texidoces = "
La disposición «mensurstriche» en que las líneas divisorias no
están dibujadas sobre los pentagramas, sino entre ellos, se puede
conseguir fijando @code{measureBarType} al valor @code{\"-span|\"}
y usando un contexto de agrupamiento que admita barras extendidas,
como @code{StaffGroup}.
"
  doctitlees = "Disposición @emph{Mensurstriche} (líneas divisorias entre pentagramas)"

%% Translation of GIT committish: 0a868be38a775ecb1ef935b079000cebbc64de40
  texidocde = "
Das Mensurstiche-Layout, in welchem die Taktlinien nicht auf den Systemen,
sondern zwischen den Systemen gesetzt werden, kann mit einer @code{StaffGroup}
anstelle von @code{ChoirStaff} erreicht werden.  Die Taktlinien auf den
Systemen werden mit der @code{transparent}-Eigenschaft ausgelöscht.

"
  doctitlede = "Mensurstriche-Layout (Taktstriche zwischen den Systemen"

%% Translation of GIT committish: ff9ca62acddb818b7788d7818a5c7eb0ddb6cdcb
  texidocca = "
La disposició «mensurstriche» en els quals les línies divisòries
no estan dibuixades sobre els pentagrames, sinó entre ells, es pot
aconseguir amb un @code{StaffGroup} en comptes d'un @code{ChoirStaff}.
La línia divisòria sobre els pentagrames s'esborra usant @code{\\hide}.

"
  doctitleca = "Disposició Mensurstriche (línies divisòries entre pentagrames)"

  categories = "Ancient notation, Contexts and engravers, Staff
                notation, Tweaks and overrides"

  texidoc = "
@emph{Mensurstriche}, bar lines between but not through staves, can be
printed by setting @code{measureBarType} to @code{\"-span|\"} and using a
grouping context that allows span bars, such as @code{StaffGroup}.
"

  doctitle = "Mensurstriche layout (bar lines between the staves)"
} % begin verbatim


\layout {
  \context {
    \Staff
    measureBarType = "-span|"
  }
}

music = \fixed c'' {
  c1
  d2 \section e2
  f1 \fine
}

\new StaffGroup <<
  \new Staff \music
  \new Staff \music
>>



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