]> git.donarmstrong.com Git - lilypond.git/blob - Documentation/snippets/inserting-score-fragments-above-a-staff,-as-markups.ly
fbbcec8daaee994abbe65b16ae7b14a7facef6a8
[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 Documentation/snippets/new
3 % Make any changes in Documentation/snippets/new/
4 % and then run scripts/auxiliar/makelsr.py
5 %
6 % This file is in the public domain.
7 %% Note: this file works from version 2.17.15
8 \version "2.18.0"
9
10 \header {
11   lsrtags = "real-music, staff-notation"
12
13   texidoc = "
14 The @code{\\markup} command is quite versatile.  In this snippet, it
15 contains a @code{\\score} block instead of texts or marks.
16
17 "
18   doctitle = "Inserting score fragments above a staff as markups"
19 } % begin verbatim
20
21
22 tuning = \markup {
23   \score {
24     \new Staff \with { \remove "Time_signature_engraver" }
25     {
26       \clef bass
27       <c, g, d g>1
28     }
29     \layout { ragged-right = ##t  indent = 0\cm }
30   }
31 }
32
33 \header {
34   title = "Solo Cello Suites"
35   subtitle = "Suite IV"
36   subsubtitle = \markup { Originalstimmung: \raise #0.5 \tuning }
37 }
38
39 \layout { ragged-right = ##f }
40
41 \relative c'' {
42   \time 4/8
43   \tuplet 3/2 { c8 d e } \tuplet 3/2 { c d e }
44   \tuplet 3/2 { c8 d e } \tuplet 3/2 { c d e }
45   g8 a g a
46   g8 a g a
47 }