int(0) array(13) { [0]=> string(44) "Running as unit: run-p323672-i323673.service" [1]=> string(60) "Changing working directory to: `/tmp/lilywiki-tmp94f93ce424'" [2]=> string(48) "Processing `/tmp/lilywiki-tmp94f93ce424/file.ly'" [3]=> string(10) "Parsing..." [4]=> string(21) "Interpreting music..." [5]=> string(34) "Preprocessing graphical objects..." [6]=> string(21) "Interpreting music..." [7]=> string(34) "Preprocessing graphical objects..." [8]=> string(36) "Finding the ideal number of pages..." [9]=> string(26) "Fitting music on 1 page..." [10]=> string(18) "Drawing systems..." [11]=> string(30) "Layout output to `file.svg'..." [12]=> string(43) "Success: compilation successfully completed" } Preventing final mark from removing final tuplet - LilyPond wiki Jump to content

Preventing final mark from removing final tuplet

From LilyPond wiki

The addition of a final mark can result in the loss of a final tuplet marking. This can be overcome by setting TupletBracket.full-length-to-extent to false.

\version "2.24.0"

% due to issue 2362 a long mark such as
%   \textEndMark "Composed Feb 2007 - Feb 2008"
% cannot be used here.

\paper { tagline = ##f }

\new Staff {
   \set tupletFullLength = ##t
   \time 1/8
   \tuplet 3/2 8 { c'16 c' c' c' c' c' c' c' c' }
   \tweak direction #DOWN \textEndMark "1234"
}

\new Staff {
  \set tupletFullLength = ##t
  \override TupletBracket.full-length-to-extent = ##f

  \time 1/8
   \tuplet 3/2 8 { c'16 c' c' c' c' c' c' c' c' }
   \tweak direction #DOWN \textEndMark "1234"
}