Insertar fragmentos de partituras sobre el pentagrama, como elementos de marcado ¶
La instrucción \markup es muy versátil. En este fragmento
de código, contiene un bloque \score con una partitura
completa en lugar de textos u otras marcas.
tuning = \markup \score {
\new Staff \with { \remove "Time_signature_engraver" }
{
\clef bass
<c, g, d g>1
}
\layout {
indent = 0\cm
}
}
\header {
= "Solo Cello Suites"
= "Suite IV"
= \markup { Originalstimmung: \raise #0.5 \tuning }
tagline = ##f
}
\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
}