Allgemein > Hilfe beim Einstieg in Lilypond

Text soll nur System beachten

<< < (2/2)

harm6:
Die paper-Setzungen/Werte können angezeigt werden. Z.B.:


--- Code: ---\paper { }

#(format #t "\nfrom paper:\n~y"
  (assoc
    'markup-system-spacing
    (ly:module->alist (ly:output-def-scope $defaultpaper))))

--- Ende Code ---

führt im terminal zu:


--- Zitat ---from paper:
(markup-system-spacing
  (basic-distance . 5)
  (padding . 0.5)
  (stretchability . 30))

--- Ende Zitat ---

Also einer alist mit key-values-Einträgen.
Dazu:
http://lilypond.org/doc/v2.19/Documentation/notation/flexible-vertical-spacing-paper-variables.de.html


Deine Setzung löscht diese Werte komplett und ersetzt sie mit einer Zahl die LilyPond nicht zuordnen kann (da der key fehlt) und somit ignoriert.


--- Code: ---\paper { markup-system-spacing  = #14 }

#(format #t "\nfrom paper:\n~y"
  (assoc
    'markup-system-spacing
    (ly:module->alist (ly:output-def-scope $defaultpaper))))

--- Ende Code ---

->

--- Zitat ---from paper:
(markup-system-spacing . 14)

--- Ende Zitat ---

Insoweit studiere bitte nochmal den oben verlinkten Abschnitt aus der NR, wie man diese Variablen anwendet.

Navigation

[0] Themen-Index

[*] Vorherige Sete

Zur normalen Ansicht wechseln