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