For displaying math in my document, I use inline SVG images. This works perfectly, but when an inline equation approaches the end of a line, a period that comes after it will snap to the next line.
Example:
HTML:
CSS:
Is there any way I can avoid this behaviour?
Example:
HTML:
if and only if <img src="/system/tmp/56010d9d67c3fb51418fdca123c469fe.svg" alt="\vect{l}\cdot\vect{p}=0" class="inline-math">.
CSS:
.inline-math {
vertical-align: middle;
margin: -2em 0;
}
Is there any way I can avoid this behaviour?