Deutsches Lilypond Forum (Archiv)
Allgemein => Fragen zu Funktionen => Thema gestartet von: slapi am Montag, 24. Dezember 2007, 13:43
-
Hi,
gibt's die Möglichkeit, statt Mensurstriche statt Taktstrichen zu verwenden (d.h. Taktstriche, die NUR ZWISCHEN den Notenzeilen verlaufen)?
danke!
stefan
-
Ja, schau dir das Beispiel/template zur Alten Notation an, http://lilypond.org/doc/v2.11/Documentation/user/lilypond-learning/Ancient-notation-templates#Ancient-notation-templates
Das müsste funktionieren. Eigentlich heißt es nur, dass du den layout-block ändern musst, etwa wie in der Vorlage:
\layout {
\context {
\Score
% no bars in staves
\override BarLine #'transparent = ##t
% incipit should not start with a start delimiter
\remove "System_start_delimiter_engraver"
}
\context {
\Voice
% no slurs
\override Slur #'transparent = ##t
% Comment in the below "\remove" command to allow line
% breaking also at those bar lines where a note overlaps
% into the next bar. The command is commented out in this
% short example score, but especially for large scores, you
% will typically yield better line breaking and thus improve
% overall spacing if you comment in the following command.
%\remove "Forbid_line_break_engraver"
}
}
Der erste Befehl ist der, den du suchst.
Gruß
Till