%% Generated by lilypond-book
%% Options: [exampleindent=10.16\mm,indent=0\mm,line-width=160\mm,paper-height=845.047\pt,paper-width=597.508\pt,papersize='(cons (* 597.508 pt) (* 845.047 pt))]
\include "lilypond-book-preamble.ly"


% ****************************************************************
% Start cut-&-pastable-section
% ****************************************************************

#(ly:set-option 'eps-box-padding 3.000000)



\paper {
  #(set-paper-size '(cons (* 597.508 pt) (* 845.047 pt)))
  indent = 0\mm
  line-width = 160\mm
  % offset the left padding, also add 1mm as lilypond creates cropped
  % images with a little space on the right
  line-width = #(- line-width (* mm  3.000000) (* mm 1))
}

\layout {
  
}




% ****************************************************************
% ly snippet:
% ****************************************************************
\sourcefilename "snippets/combining-dynamics-with-markup-texts-2.ly"
\sourcefileline 0
%% DO NOT EDIT this file manually; it was automatically
%% generated from the LilyPond Wiki
%% (https://wiki.lilypond.community).
%%
%% Make any changes in the Wiki itself, or in
%% `Documentation/snippets/new/`, then run
%% `scripts/auxiliar/makelsr.pl`.
%%
%% This file is in the public domain.

\version "2.24.0"

\header {
%% Translation of GIT committish: c043783aac6c35926d633aa2daf60ed4f2e7ca7a
  texidocfr = "
Certaines indications de nuance peuvent requérir un complément textuel,
comme « più @emph{f} » ou « @emph{p} subito ». Elles se réalisent à
l'aide de la fonction Scheme @code{make-dynamic-script}. Les objets
alors créés se comportent somme des objets graphiques
@code{DynamicText}.
"

  doctitlefr = "Combinaison de nuance et de texte (2)"

  categories = "Expressive marks, Really simple, Text"

  texidoc = "
Some dynamics may involve text indications (such as @qq{più @emph{f}} or
@qq{@emph{p} subito}). These can be produced using the
@code{make-dynamic-script} Scheme function; the resulting object
behaves like a @code{DynamicText} grob.

See also @qq{Combining dynamics with markup texts}.
"

  doctitle = "Combining dynamics with markup texts (2)"
} % begin verbatim


piuF = #(make-dynamic-script
          #{ \markup { \normal-text \italic più \dynamic f } #})

\score {
  \relative c'' {
    c2\f c\piuF
  }
}



% ****************************************************************
% end ly snippet
% ****************************************************************
