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