ZitatNormalerweise wird die Pause in der Mitte der Notenzeile gesetzt, wenn die 2. Stimme an dieser Stelle keinen Inhalt hat.Das ist sicherlich eine gute Notensatzregel, jedoch ist in LilyPond das von dir beobachtete Verhalten zumindest seit 2.12.3 (die älteste bei mir noch lauffähige Version) unverändert.

\version "2.26.0"
mus = \relative {
c''4 c c c
}
meinScore =
%Musikfunktion für transponierbaren Score
#(define-music-function (m p)
(ly:music? ly:pitch?)
#{
\new Staff
<<
\new Voice
{
\voiceOne
\key $p \major
\transpose c $p $m
}
\new Voice
{
\voiceTwo
\transpose c' $p $m
}
>>
#}
)
\bookpart {
#(for-each
(lambda (p)
(let* ((sc (scorify-music (meinScore mus p))))
(ly:score-add-output-def!
sc
#{ \layout { #(layout-set-staff-size 15) } #})
(add-score sc)))
(music-pitches #{ { c } #}))
}
\version "2.26.0"
mus = \relative {
c''4 c c c
}
\paper {
tagline = ##f
}
meinscore =
%Musikfunktion für transponierbaren Score
#(define-music-function (m p)
(ly:music? ly:pitch?)
#{
<<
\new Staff
<<
\new Staff="up"
<<
\new Voice
{
\voiceOne
\key $p \major
\transpose c $p $m
}
\new Voice
{
\voiceTwo
\transpose c' $p $m
}
>>
>>
>>
#}
)
\bookpart {
#(for-each
(lambda (p)
(add-score
(scorify-music (meinscore mus p)
;(layout-set-staff-size 15)
)))
(music-pitches #{ { c } #}))
}\override TimeSignature.style = #'single-digitheißt es ab 2.25\override TimeSignature.style = #'single-number\version "2.26.0"
mus = \relative {
\time 3/4
\voiceOne
c''4 c c
R2.
\oneVoice
R2.
}
\paper {
tagline = ##f
}
\mus\version "2.26.0"
mus = \relative {
\time 3/4
\voiceOne
\override Rest.voiced-position = #0
\override MultiMeasureRest.voiced-position = #0
c''4 c r
R2.
}
\new Voice \musZitat von: ManuelaIn Lilypond fällt mir keine Lösung ein
%% `make-line-stencil` is defined:
%% (make-line-stencil width startx starty endx endy)
#(define (horizontal-cut-mark width y)
(make-line-stencil 0.1 0 y width y))
#(define (vertical-cut-mark height x)
(make-line-stencil 0.1 x 0 x (- height)))
\paper {
page-post-process =
#(lambda (layout pages)
(let* (;; We assume all pages have the same dimensions
(page (car pages))
(page-height (ly:prob-property page 'paper-height))
(page-width (ly:prob-property page 'paper-width)))
(for-each
(lambda (page)
(set! (ly:prob-property page 'stencil)
(ly:stencil-add
(ly:prob-property page 'stencil)
;; top
(horizontal-cut-mark page-width -8)
;; bottom
(horizontal-cut-mark page-width (- 8 page-height))
;; left
(vertical-cut-mark page-height 8)
;; right
(vertical-cut-mark page-height (- page-width 8))
)))
pages)))
}
\markup \box \fill-line { "PAGE 1" }
\pageBreak
\markup \box \fill-line { "PAGE 1" }
\documentclass[a4paper]{article}
\usepackage[]{pdfpages}
\usepackage[bindingoffset=0in,margin=0mm,left=0cm,right=0cm,top=3cm,bottom=0cm,footskip=.25in]
{geometry}
\usepackage[
noinfo,
cam,
cross, % crosses as marks
width=216mm, % the width of the galley
height=303mm, % the height of the galley
center % actual page is centered on the galley
]{crop}
\begin{document}
\includepdf[pages={-}]{hier den Namen des Scores einfügen}
\end{document}Zitat von: harm6 am Montag, 11. Mai 2026, 00:33Wir haben ja bereits event-listener.lySehr guter Hinweis; vielen Dank!
https://lilypond.org/doc/v2.24/Documentation/notation-big-page#saving-music-events-to-a-file
Schon mal versucht?