]> git.donarmstrong.com Git - lilypond.git/blob - Documentation/snippets/inserting-score-fragments-above-a-staff,-as-markups.ly
3ff97b4cd523445d8db20e148e518943f499b597
[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.2"
8
9 \header {
10   lsrtags = "staff-notation, real-music"
11
12 %% Translation of GIT committish: 57f9346bb030f49336a858fcbf1519366fe56454
13   texidocfr = "
14 La commande @code{\\markup} est polyvalente.  Dans cet exemple, elle
15 contient un bloc @code{\\score} plutôt que du texte ou une marque.
16
17 "
18   doctitlefr = "Insertion d'un fragment au-dessus de la portée"
19
20   texidoc = "
21 The @code{\\markup} command is quite versatile.  In this snippet, it
22 contains a @code{\\score} block instead of texts or marks.
23
24 "
25   doctitle = "Inserting score fragments above a staff as markups"
26 } % begin verbatim
27
28
29 tuning = \markup {
30   \score {
31     \new Staff \with { \remove "Time_signature_engraver" }
32     {
33       \clef bass
34       <c, g, d g>1
35     }
36     \layout { ragged-right = ##t }
37   }
38 }
39
40 \header {
41   title = "Solo Cello Suites"
42   subtitle = "Suite IV"
43   subsubtitle = \markup { Originalstimmung: \general-align #Y #CENTER \tuning }
44 }
45
46 \layout { ragged-right = ##f }
47
48 \relative c'' {
49   \time 4/8
50   \times 2/3 { c8 d e } \times 2/3 { c d e }
51   \times 2/3 { c8 d e } \times 2/3 { c d e }
52   g8 a g a
53   g8 a g a
54 }
55