Replies: 1 comment 1 reply
-
That is an interesting idea. I guess this should be a behind a configuration option that you can turn on/off. |
Beta Was this translation helpful? Give feedback.
1 reply
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
-
Hello,
is there a simple way to limit matrix rendered size in Tex ?
imagine you have a 1000x1000 matrix in memory but just want to output a tiny part for user to not blow up his screen
ex : setting max display column and rows to 5 on a 1000x1000 matrix should output something like this
(ref https://tex.stackexchange.com/questions/416635/labeling-the-dimensions-of-a-matrix )
quick generating code :
math.parse(math.kron(math.range(1,100),math.range(1,100)).toString()).toTex();
Beta Was this translation helpful? Give feedback.
All reactions