Closed tlienart closed 5 years ago
So when using \left and \right, the number gets obviously placed at the top of the right margin which is not great visually.
\left
\right
This fix solves it but breaks other stuff when resizing the window (e.g. convex analysis pt3 IIRC)
.katex-display .katex { display: inline-block; width:95%; } /* overwrite katex settings */ .katex-display::after { counter-increment: eqnum; content: "(" counter(eqnum) ")"; position: relative; width:4%;} @media (max-width: 680px) { .katex-display::after { float: right; /* padding-right: 5px;} */ }
probably a bit low priority.
Solution above is "always centered" (including for multiple lines) but breaks when resizing. Maybe that's what we want maybe not. Maybe there can be something different if it's multiline or not...
reposting at Judoc
So when using
\left
and\right
, the number gets obviously placed at the top of the right margin which is not great visually.This fix solves it but breaks other stuff when resizing the window (e.g. convex analysis pt3 IIRC)
probably a bit low priority.
Solution above is "always centered" (including for multiple lines) but breaks when resizing. Maybe that's what we want maybe not. Maybe there can be something different if it's multiline or not...