You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
When rendered in matplotlib visualizations, the lower octave marks appear noticeably bolder and more prominent than the upper octave marks, creating visual inconsistency.
Consider using \underset{\cdot} instead of \underset{\bullet} for lower octaves to match the visual weight of the upper octave dots.
Context
This was discovered while implementing cyclic visualizations that use the new LaTeX diacritics feature. The inconsistent visual weights make the lower octave markings appear disproportionately prominent.
Issue Description
The
latex_octaved_sargam_letterproperty introduced in v0.1.14 creates visually inconsistent diacritical marks for upper vs lower octaves.Current Behavior
$\dot{\mathrm{letter}}$- produces clean, thin dots above letters$\underset{\bullet}{\mathrm{letter}}$- produces bold, thick bullet symbols below lettersVisual Impact
When rendered in matplotlib visualizations, the lower octave marks appear noticeably bolder and more prominent than the upper octave marks, creating visual inconsistency.
Example
Suggested Fix
Consider using
\underset{\cdot}instead of\underset{\bullet}for lower octaves to match the visual weight of the upper octave dots.Context
This was discovered while implementing cyclic visualizations that use the new LaTeX diacritics feature. The inconsistent visual weights make the lower octave markings appear disproportionately prominent.