]> git.donarmstrong.com Git - lilypond.git/blob - Documentation/snippets/new/inserting-score-fragments-above-a-staff,-as-markups.ly
Imported Upstream version 2.18.2
[lilypond.git] / Documentation / snippets / new / inserting-score-fragments-above-a-staff,-as-markups.ly
1 \version "2.17.15"
2
3 \header {
4   lsrtags = "real-music, staff-notation"
5
6   texidoc = "
7 The @code{\\markup} command is quite versatile.  In this snippet, it
8 contains a @code{\\score} block instead of texts or marks.
9
10 "
11   doctitle = "Inserting score fragments above a staff as markups"
12 }
13
14 tuning = \markup {
15   \score {
16     \new Staff \with { \remove "Time_signature_engraver" }
17     {
18       \clef bass
19       <c, g, d g>1
20     }
21     \layout { ragged-right = ##t  indent = 0\cm }
22   }
23 }
24
25 \header {
26   title = "Solo Cello Suites"
27   subtitle = "Suite IV"
28   subsubtitle = \markup { Originalstimmung: \raise #0.5 \tuning }
29 }
30
31 \layout { ragged-right = ##f }
32
33 \relative c'' {
34   \time 4/8
35   \tuplet 3/2 { c8 d e } \tuplet 3/2 { c d e }
36   \tuplet 3/2 { c8 d e } \tuplet 3/2 { c d e }
37   g8 a g a
38   g8 a g a
39 }