]> git.donarmstrong.com Git - lilypond.git/blob - Documentation/snippets/inserting-score-fragments-above-a-staff,-as-markups.ly
Merge branch 'lilypond/translation' of ssh://git.sv.gnu.org/srv/git/lilypond
[lilypond.git] / Documentation / snippets / inserting-score-fragments-above-a-staff,-as-markups.ly
1 %% Do not edit this file; it is automatically
2 %% generated from LSR http://lsr.dsi.unimi.it
3 %% This file is in the public domain.
4 \version "2.13.10"
5
6 \header {
7   lsrtags = "staff-notation"
8
9   texidoc = "
10 The @code{\\markup} command is quite versatile.  In this snippet, it
11 contains a @code{\\score} block instead of texts or marks.
12
13 "
14   doctitle = "Inserting score fragments above a staff as markups"
15 } % begin verbatim
16
17 tuning = \markup {
18   \score {
19     \new Staff \with { \remove "Time_signature_engraver" }
20     {
21       \clef bass
22       <c, g, d g>1
23     }
24     \layout { ragged-right = ##t }
25   }
26 }
27
28 \header {
29   title = "Solo Cello Suites"
30   subtitle = "Suite IV"
31   subsubtitle = \markup { Originalstimmung: \general-align #Y #CENTER \tuning }
32 }
33
34 \layout { ragged-right = ##f }
35
36 \relative c'' {
37   \time 4/8
38   \times 2/3 { c8 d e } \times 2/3 { c d e }
39   \times 2/3 { c8 d e } \times 2/3 { c d e }
40   g8 a g a
41   g8 a g a
42 }
43