X-Git-Url: https://git.donarmstrong.com/?a=blobdiff_plain;f=Documentation%2Fsnippets%2Finserting-score-fragments-above-a-staff%2C-as-markups.ly;h=388398c02d8fd948cb5c072498734972c45bc58c;hb=93d725094ee629b2d5200ab5a75b609579a62973;hp=e70d22ab2957f57f1a877689387aebd578024ae2;hpb=223ad8f5799657a5b628d862dd927f4197486b02;p=lilypond.git diff --git a/Documentation/snippets/inserting-score-fragments-above-a-staff,-as-markups.ly b/Documentation/snippets/inserting-score-fragments-above-a-staff,-as-markups.ly index e70d22ab29..388398c02d 100644 --- a/Documentation/snippets/inserting-score-fragments-above-a-staff,-as-markups.ly +++ b/Documentation/snippets/inserting-score-fragments-above-a-staff,-as-markups.ly @@ -1,10 +1,14 @@ -%% Do not edit this file; it is automatically -%% generated from LSR http://lsr.dsi.unimi.it -%% This file is in the public domain. -\version "2.13.10" +% DO NOT EDIT this file manually; it is automatically +% generated from Documentation/snippets/new +% Make any changes in Documentation/snippets/new/ +% and then run scripts/auxiliar/makelsr.py +% +% This file is in the public domain. +%% Note: this file works from version 2.17.15 +\version "2.17.15" \header { - lsrtags = "staff-notation" + lsrtags = "real-music, staff-notation" texidoc = " The @code{\\markup} command is quite versatile. In this snippet, it @@ -14,6 +18,7 @@ contains a @code{\\score} block instead of texts or marks. doctitle = "Inserting score fragments above a staff as markups" } % begin verbatim + tuning = \markup { \score { \new Staff \with { \remove "Time_signature_engraver" } @@ -21,23 +26,22 @@ tuning = \markup { \clef bass 1 } - \layout { ragged-right = ##t } + \layout { ragged-right = ##t indent = 0\cm } } } \header { title = "Solo Cello Suites" subtitle = "Suite IV" - subsubtitle = \markup { Originalstimmung: \general-align #Y #CENTER \tuning } + subsubtitle = \markup { Originalstimmung: \raise #0.5 \tuning } } \layout { ragged-right = ##f } \relative c'' { \time 4/8 - \times 2/3 { c8 d e } \times 2/3 { c d e } - \times 2/3 { c8 d e } \times 2/3 { c d e } + \tuplet 3/2 { c8 d e } \tuplet 3/2 { c d e } + \tuplet 3/2 { c8 d e } \tuplet 3/2 { c d e } g8 a g a g8 a g a } -