connorferster / handcalcs

Python library for converting Python calculations into rendered latex.
Apache License 2.0
5.68k stars 435 forks source link

Force Justification #184

Closed cslotboom closed 1 year ago

cslotboom commented 1 year ago

Is there a way to force output images to be justified to the left? When there are multiple cells I would like to be able to have them all justified similarly!

image

connorferster commented 1 year ago

This is a side effect of the rendering engine. Katex seems to "center" everything. Mathjax seems to left-justify everything.

cslotboom commented 1 year ago

I see, so any changes have to happen at the level of the rendering engine. Thanks!