Uh oh!
There was an error while loading.Please reload this page.
- Notifications
You must be signed in to change notification settings - Fork8.1k
DOC: Dynamically resize mathtext symbol tables (#26143)#30661
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to ourterms of service andprivacy statement. We’ll occasionally send you account related emails.
Already on GitHub?Sign in to your account
base:main
Are you sure you want to change the base?
Uh oh!
There was an error while loading.Please reload this page.
Conversation
rcomer left a comment
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others.Learn more.
Thank you for the contribution@Ashish-coder-gif. Unfortunately the symbols tables are now not rendering at all. Do you know why?
Before this change:
https://matplotlib.org/devdocs/users/explain/text/mathtext.html#symbols
After this change:
https://output.circle-artifacts.com/output/job/cc17ec9e-e133-4ca9-9a4a-ead61dbccd8b/artifacts/0/doc/build/html/users/explain/text/mathtext.html#symbols
Note also, to solve the issue, the number of columns should change with window size. From a quick look at your code, I do not think you have implemented that.
f6fe650 to811a1adCompareAshish-coder-gif commentedOct 26, 2025
kindly allow me to merge |
rcomer commentedOct 26, 2025
Hi@Ashish-coder-gif, unfortunately the symbols table is still not rendering after your most recent commit. You can check this yourself by clicking “View the built docs” in the automated checks below, then navigate to User Guide -> Text -> Writing mathematical expressions, and scroll to the bottom of the page. |
PR summary
PR checklist
PR Summary
This pull request updates
doc/sphinxext/math_symbol_table.pyto dynamically resize mathtext symbol tables during documentation builds.Why this change is necessary
What problem does it solve
Verification
make -C doc html.This PR addresses issue#26143.