%% Generated by lilypond-book
%% Options: [exampleindent=10.16\mm,indent=0\mm,line-width=160\mm]
\include "lilypond-book-preamble.ly"


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

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



\paper {
  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/inserting-score-fragments-above-a-staff,-as-markups.ly"
\sourcefileline 0
%% DO NOT EDIT this file manually; it was automatically
%% generated from the LilyPond Snippet Repository
%% (http://lsr.di.unimi.it).
%%
%% Make any changes in the LSR itself, or in
%% `Documentation/snippets/new/`, then run
%% `scripts/auxiliar/makelsr.pl`.
%%
%% This file is in the public domain.

\version "2.23.13"

\header {
%% Translation of GIT committish: a8a85e19654e46d725563e6deba44083ef137a2c
  texidocja = "
@code{\\markup} コマンドは非常に多くのことができます。@c
このスニペットでは、テキストや記号ではなく、@code{\\score} ブロックを@c
含んだ @code{\\markup} を作成しています。
"
  doctitleja = "譜の上にマークアップとして楽譜片を挿入する"

%% Translation of GIT committish: a3fd5364fc4f247579da0ed2bfea887ab37285c6
  texidocfr = "
La commande @code{\\markup} est polyvalente. Dans cet exemple, elle
contient un bloc @code{\\score} plutôt que du texte ou une marque.
"

  doctitlefr = "Insertion d'un fragment dans un @emph{markup} au-dessus de la portée"

%% Translation of GIT committish: 262abf17c7827e88e3d509100c43920c8e225bec
  texidoces = "
La instrucción @code{\\markup} es muy versátil.  En este fragmento de
código, contiene un bloque @code{\\score} con una partitura completa
en lugar de textos u otras marcas.

"
  doctitlees = "Insertar fragmentos de partituras sobre del pentagrama como elementos de marcado"

%% Translation of GIT committish: 262abf17c7827e88e3d509100c43920c8e225bec
  texidocca = "
L'ordre @code{\\markup} és molt versàtil.  En aquest fragment de
codi, hi ha un bloc @code{\\score} amb una partitura completa en
comptes de textos o altra marcatge.

"
  doctitleca = "Inserir fragments de partitures a sobre del pentagrama com elements de marcatge"

  lsrtags = "real-music, staff-notation"

  texidoc = "
The @code{\\markup} command is quite versatile.  In this snippet, it
contains a @code{\\score} block instead of texts or marks.
"

  doctitle = "Inserting score fragments above a staff, as markups"
} % begin verbatim


tuning = \markup {
  \score {
    \new Staff \with { \remove "Time_signature_engraver" }
    {
      \clef bass
      <c, g, d g>1
    }
    \layout { ragged-right = ##t  indent = 0\cm }
  }
}

\header {
  title = "Solo Cello Suites"
  subtitle = "Suite IV"
  subsubtitle = \markup { Originalstimmung: \raise #0.5 \tuning }
}

\layout { ragged-right = ##f }

\relative c'' {
  \time 4/8
  \tuplet 3/2 { c8 d e } \tuplet 3/2 { c d e }
  \tuplet 3/2 { c8 d e } \tuplet 3/2 { c d e }
  g8 a g a
  g8 a g a
}



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