René's URL Explorer Experiment


Title: [Bug]: undefined \mathdefault · Issue #27907 · matplotlib/matplotlib · GitHub

Open Graph Title: [Bug]: undefined \mathdefault · Issue #27907 · matplotlib/matplotlib

X Title: [Bug]: undefined \mathdefault · Issue #27907 · matplotlib/matplotlib

Description: Bug summary If we \input the pgf file created by matplotlib with pgf backend, it assumes \mathdefault to exist. But unfortunately, this command is not provided by any of the recommended packages as far as I see: to produce the actual pdf...

Open Graph Description: Bug summary If we \input the pgf file created by matplotlib with pgf backend, it assumes \mathdefault to exist. But unfortunately, this command is not provided by any of the recommended packages as...

X Description: Bug summary If we \input the pgf file created by matplotlib with pgf backend, it assumes \mathdefault to exist. But unfortunately, this command is not provided by any of the recommended packages as...

Opengraph URL: https://github.com/matplotlib/matplotlib/issues/27907

X: @github

direct link

Domain: github.com


Hey, it has json ld scripts:
{"@context":"https://schema.org","@type":"DiscussionForumPosting","headline":"[Bug]: undefined \\mathdefault","articleBody":"### Bug summary\r\n\r\nIf we `\\input` the pgf file created by matplotlib with pgf backend, it assumes `\\mathdefault` to exist. But unfortunately, this command is not provided by any of the recommended packages as far as I see: to produce the actual `pdf` file, matplotlib seems to actually define it manually like:\r\n```\r\n\\def\\mathdefault#1{#1}\r\n```\r\nas can be read from the automatically generated .pgf file… Manually adding this line in the .tex file before the `\\input` works as a workaround, but this seems like a dirty workaround as this is not documented as far as I can see.\r\n\r\nWould it be possible to either document it or provide these commands in a properly packaged latex library?\r\n\r\nSee also this discussion https://github.com/leo-colisson/robust-externalize/issues/31\r\n\r\n### Code for reproduction\r\n\r\n```Python\r\nimport matplotlib.pyplot as plt\r\nimport matplotlib\r\nmatplotlib.use('pgf')\r\n\r\n\r\nplt.rcParams.update({ \r\n    \"text.usetex\": True, \r\n})\r\nplt.rcParams.update({ \r\n    \"pgf.preamble\": \"\\n\".join([\r\n        r\"\\usepackage{fontspec}\",\r\n        r\"\\usepackage{amsmath}\",\r\n        r\"\\usepackage{amssymb}\",\r\n    ]),\r\n})\r\n\r\nplt.rcParams['text.latex.preamble'] = r'\\newcommand{\\mathdefault}[1][]{}'  # doesn't seem to work.\r\n\r\nyear = [2014, 2015, 2016, 2017, 2018, 2019]\r\ntutorial_count = [39, 117, 111, 110, 67, 29]\r\nplt.plot(year, tutorial_count, color=\"#6c3376\", linewidth=2)\r\nplt.title(\"Simple plot\")\r\nplt.xlabel('Year')\r\nplt.ylabel('Number of futurestud.io Tutorials')\r\n\r\nplt.savefig(\"foo.pgf\", bbox_inches=\"tight\")\r\n```\r\n\r\n\r\n### Actual outcome\r\n\r\nI would expect `\\input` of the pgf file to work, but it is not. Here is the full file I use to both compile the python and include it (using the recent robust-externalize library, you might need to copy the .sty from to install it and you might want to compile with `-shell-escape` for simplicity)\r\n\r\n```\r\n\\documentclass{article} \r\n\\usepackage{lipsum}\r\n\\usepackage{tikz}\r\n\\usepackage{robust-externalize}\r\n\\robExtConfigure{enable fallback to manual mode} % prints a helpful message in the document if you forgot --shell-escape\r\n%% If you do not add this line, this will return an error:\r\n%\\def\\mathdefault#1{#1}\r\n\\begin{document}\r\n\r\n\\lipsum[1]\r\n\r\n\\begin{figure}[ht]\r\n  \\centering\r\n  \\begin{CacheMeCode}{python, custom include command={\\input{\\robExtAddCachePathAndName{\\robExtFinalHash.pgf}}}, set placeholder eval={__LINEWIDTH__}{\\lenToCmNoUnit[in]{\\linewidth}}}\r\n    import matplotlib.pyplot as plt\r\n    import matplotlib\r\n    from matplotlib.pyplot import figure\r\n    matplotlib.use(\"pgf\")\r\n    # See this link for details on how to preview the image in jupyter\r\n    # https://matplotlib.org/stable/users/explain/text/pgf.html\r\n    matplotlib.rcParams.update({\r\n      \"font.family\": \"serif\",\r\n      \"font.serif\": [], # Use LaTeX default serif font.\r\n      \"text.usetex\": True, # use inline math for ticks\r\n    })\r\n\r\n    figure(figsize=(__LINEWIDTH__, 0.7*__LINEWIDTH__))\r\n    year = [2014, 2015, 2016, 2017, 2018, 2019]\r\n    tutorial_count = [39, 117, 111, 110, 67, 29]\r\n    plt.plot(year, tutorial_count, color=\"#6c3376\", linewidth=2)\r\n    plt.title(\"Simple plot for $\\delta = 2$\")\r\n    plt.xlabel('Year')\r\n    plt.ylabel('Number of futurestud.io Tutorials')\r\n    print(get_filename_from_extension(\".pgf\"))\r\n    # https://stackoverflow.com/a/52587591/4987648\r\n    plt.savefig(get_filename_from_extension(\".pgf\"), bbox_inches=\"tight\")\r\n  \\end{CacheMeCode}\r\n  \\caption{Test}%\r\n\\end{figure}\r\n\r\n\\end{document}\r\n\r\n% Local Variables:\r\n% TeX-command-extra-options: \"--shell-escape -halt-on-error\"\r\n% End:\r\n```\r\n\r\n### Expected outcome\r\n\r\nI expect the use of `\\def\\mathdefault#1{#1}` to be at least documented, ideally automatically defined in the `.pgf` file if the command does not already exist with something like:\r\n```\r\n\\providecommand\\mathdefault[1]{#1}\r\n```\r\n\r\n### Additional information\r\n\r\nThis seems to be a regression, as it used not to be a problem on 3.7 I think.\r\n\r\n### Operating system\r\n\r\nNixOs\r\n\r\n### Matplotlib Version\r\n\r\n3.8.2\r\n\r\n### Matplotlib Backend\r\n\r\npgf\r\n\r\n### Python version\r\n\r\n3.11.8\r\n\r\n### Jupyter version\r\n\r\nNot using jupyter\r\n\r\n### Installation\r\n\r\nLinux package manager","author":{"url":"https://github.com/tobiasBora","@type":"Person","name":"tobiasBora"},"datePublished":"2024-03-11T13:24:28.000Z","interactionStatistic":{"@type":"InteractionCounter","interactionType":"https://schema.org/CommentAction","userInteractionCount":12},"url":"https://github.com/27907/matplotlib/issues/27907"}

route-pattern/_view_fragments/issues/show/:user_id/:repository/:id/issue_layout(.:format)
route-controllervoltron_issues_fragments
route-actionissue_layout
fetch-noncev2:13b36829-39d3-8aa4-8e1f-39c9d101dd59
current-catalog-service-hash81bb79d38c15960b92d99bca9288a9108c7a47b18f2423d0f6438c5b7bcd2114
request-id8092:20B94F:A39041:DAB195:6A51A786
html-safe-noncec47d09e21ed702bfc57209d2479479deedd6b8cd20e1a7ce8dbb2418f0846438
visitor-payloadeyJyZWZlcnJlciI6IiIsInJlcXVlc3RfaWQiOiI4MDkyOjIwQjk0RjpBMzkwNDE6REFCMTk1OjZBNTFBNzg2IiwidmlzaXRvcl9pZCI6Ijg4NjY5NjIyMzkyMzM1NjY1OTgiLCJyZWdpb25fZWRnZSI6ImlhZCIsInJlZ2lvbl9yZW5kZXIiOiJpYWQifQ==
visitor-hmac2b32a14643a2df0d9b9cd41dd7c68939d378bc5c08b27024d2e39bfbb0d1ed9d
hovercard-subject-tagissue:2179130055
github-keyboard-shortcutsrepository,issues,copilot
google-site-verificationApib7-x98H0j5cPqHWwSMm6dNU4GmODRoqxLiDzdx9I
octolytics-urlhttps://collector.github.com/github/collect
analytics-location///voltron/issues_fragments/issue_layout
fb:app_id1401488693436528
apple-itunes-appapp-id=1477376905, app-argument=https://github.com/_view_fragments/issues/show/matplotlib/matplotlib/27907/issue_layout
twitter:imagehttps://opengraph.githubassets.com/83caf3f3149280fa5412dcd12fc5334d3ec3f77ba15d9cbac8b3dfd89dbf75a6/matplotlib/matplotlib/issues/27907
twitter:cardsummary_large_image
og:imagehttps://opengraph.githubassets.com/83caf3f3149280fa5412dcd12fc5334d3ec3f77ba15d9cbac8b3dfd89dbf75a6/matplotlib/matplotlib/issues/27907
og:image:altBug summary If we \input the pgf file created by matplotlib with pgf backend, it assumes \mathdefault to exist. But unfortunately, this command is not provided by any of the recommended packages as...
og:image:width1200
og:image:height600
og:site_nameGitHub
og:typeobject
og:author:usernametobiasBora
hostnamegithub.com
expected-hostnamegithub.com
Noneb9a586c06a05a7a86fc7e3f4dbd03e42f6869085879aa184aa6369456dbd50fb
turbo-cache-controlno-preview
go-importgithub.com/matplotlib/matplotlib git https://github.com/matplotlib/matplotlib.git
octolytics-dimension-user_id215947
octolytics-dimension-user_loginmatplotlib
octolytics-dimension-repository_id1385122
octolytics-dimension-repository_nwomatplotlib/matplotlib
octolytics-dimension-repository_publictrue
octolytics-dimension-repository_is_forkfalse
octolytics-dimension-repository_network_root_id1385122
octolytics-dimension-repository_network_root_nwomatplotlib/matplotlib
turbo-body-classeslogged-out env-production page-responsive
disable-turbofalse
browser-stats-urlhttps://api.github.com/_private/browser/stats
browser-errors-urlhttps://api.github.com/_private/browser/errors
release7aed05249554b889eb33d002851a973eebcc7e91
ui-targetfull
theme-color#1e2327
color-schemelight dark

Links:

Skip to contenthttps://github.com/matplotlib/matplotlib/issues/27907#start-of-content
https://github.com/
Sign in https://github.com/login?return_to=https%3A%2F%2Fgithub.com%2Fmatplotlib%2Fmatplotlib%2Fissues%2F27907
GitHub CopilotWrite better code with AIhttps://github.com/features/copilot
GitHub Copilot appDirect agents from issue to mergehttps://github.com/features/ai/github-app
MCP RegistryNewIntegrate external toolshttps://github.com/mcp
ActionsAutomate any workflowhttps://github.com/features/actions
CodespacesInstant dev environmentshttps://github.com/features/codespaces
IssuesPlan and track workhttps://github.com/features/issues
Code ReviewManage code changeshttps://github.com/features/code-review
GitHub Advanced SecurityFind and fix vulnerabilitieshttps://github.com/security/advanced-security
Code securitySecure your code as you buildhttps://github.com/security/advanced-security/code-security
Secret protectionStop leaks before they starthttps://github.com/security/advanced-security/secret-protection
Why GitHubhttps://github.com/why-github
Documentationhttps://docs.github.com
Bloghttps://github.blog
Changeloghttps://github.blog/changelog
Marketplacehttps://github.com/marketplace
View all featureshttps://github.com/features
Enterpriseshttps://github.com/enterprise
Small and medium teamshttps://github.com/team
Startupshttps://github.com/enterprise/startups
Nonprofitshttps://github.com/solutions/industry/nonprofits
App Modernizationhttps://github.com/solutions/use-case/app-modernization
DevSecOpshttps://github.com/solutions/use-case/devsecops
DevOpshttps://github.com/solutions/use-case/devops
CI/CDhttps://github.com/solutions/use-case/ci-cd
View all use caseshttps://github.com/solutions/use-case
Healthcarehttps://github.com/solutions/industry/healthcare
Financial serviceshttps://github.com/solutions/industry/financial-services
Manufacturinghttps://github.com/solutions/industry/manufacturing
Governmenthttps://github.com/solutions/industry/government
View all industrieshttps://github.com/solutions/industry
View all solutionshttps://github.com/solutions
AIhttps://github.com/resources/articles?topic=ai
Software Developmenthttps://github.com/resources/articles?topic=software-development
DevOpshttps://github.com/resources/articles?topic=devops
Securityhttps://github.com/resources/articles?topic=security
View all topicshttps://github.com/resources/articles
Customer storieshttps://github.com/customer-stories
Events & webinarshttps://github.com/resources/events
Ebooks & reportshttps://github.com/resources/whitepapers
Business insightshttps://github.com/solutions/executive-insights
GitHub Skillshttps://skills.github.com
Documentationhttps://docs.github.com
Customer supporthttps://support.github.com
Community forumhttps://github.com/orgs/community/discussions
Trust centerhttps://github.com/trust-center
Partnershttps://github.com/partners
View all resourceshttps://github.com/resources
GitHub SponsorsFund open source developershttps://github.com/open-source/sponsors
Security Labhttps://securitylab.github.com
Maintainer Communityhttps://maintainers.github.com
Acceleratorhttps://github.com/open-source/accelerator
GitHub Starshttps://stars.github.com
Archive Programhttps://archiveprogram.github.com
Topicshttps://github.com/topics
Trendinghttps://github.com/trending
Collectionshttps://github.com/collections
Enterprise platformAI-powered developer platformhttps://github.com/enterprise
GitHub Advanced SecurityEnterprise-grade security featureshttps://github.com/security/advanced-security
Copilot for BusinessEnterprise-grade AI featureshttps://github.com/features/copilot/copilot-business
Premium SupportEnterprise-grade 24/7 supporthttps://github.com/enterprise/premium-support
Pricinghttps://github.com/pricing
Search syntax tipshttps://docs.github.com/search-github/github-code-search/understanding-github-code-search-syntax
documentationhttps://docs.github.com/search-github/github-code-search/understanding-github-code-search-syntax
Sign in https://github.com/login?return_to=https%3A%2F%2Fgithub.com%2Fmatplotlib%2Fmatplotlib%2Fissues%2F27907
Sign up https://github.com/signup?ref_cta=Sign+up&ref_loc=header+logged+out&ref_page=%2F%3Cuser-name%3E%2F%3Crepo-name%3E%2Fvoltron%2Fissues_fragments%2Fissue_layout&source=header-repo&source_repo=matplotlib%2Fmatplotlib
Reloadhttps://github.com/matplotlib/matplotlib/issues/27907
Reloadhttps://github.com/matplotlib/matplotlib/issues/27907
Reloadhttps://github.com/matplotlib/matplotlib/issues/27907
Please reload this pagehttps://github.com/matplotlib/matplotlib/issues/27907
matplotlib https://github.com/matplotlib
matplotlibhttps://github.com/matplotlib/matplotlib
Please reload this pagehttps://github.com/matplotlib/matplotlib/issues/27907
Notifications https://github.com/login?return_to=%2Fmatplotlib%2Fmatplotlib
Fork 8.4k https://github.com/login?return_to=%2Fmatplotlib%2Fmatplotlib
Star 23k https://github.com/login?return_to=%2Fmatplotlib%2Fmatplotlib
Code https://github.com/matplotlib/matplotlib
Issues 1.1k https://github.com/matplotlib/matplotlib/issues
Pull requests 409 https://github.com/matplotlib/matplotlib/pulls
Actions https://github.com/matplotlib/matplotlib/actions
Projects https://github.com/matplotlib/matplotlib/projects
Wiki https://github.com/matplotlib/matplotlib/wiki
Security and quality 0 https://github.com/matplotlib/matplotlib/security
Insights https://github.com/matplotlib/matplotlib/pulse
Code https://github.com/matplotlib/matplotlib
Issues https://github.com/matplotlib/matplotlib/issues
Pull requests https://github.com/matplotlib/matplotlib/pulls
Actions https://github.com/matplotlib/matplotlib/actions
Projects https://github.com/matplotlib/matplotlib/projects
Wiki https://github.com/matplotlib/matplotlib/wiki
Security and quality https://github.com/matplotlib/matplotlib/security
Insights https://github.com/matplotlib/matplotlib/pulse
[Bug]: undefined \mathdefaulthttps://github.com/matplotlib/matplotlib/issues/27907#top
backend: pgfhttps://github.com/matplotlib/matplotlib/issues?q=state%3Aopen%20label%3A%22backend%3A%20pgf%22
topic: text/usetexhttps://github.com/matplotlib/matplotlib/issues?q=state%3Aopen%20label%3A%22topic%3A%20text%2Fusetex%22
https://github.com/tobiasBora
tobiasBorahttps://github.com/tobiasBora
on Mar 11, 2024https://github.com/matplotlib/matplotlib/issues/27907#issue-2179130055
leo-colisson/robust-externalize#31https://github.com/leo-colisson/robust-externalize/issues/31
backend: pgfhttps://github.com/matplotlib/matplotlib/issues?q=state%3Aopen%20label%3A%22backend%3A%20pgf%22
topic: text/usetexhttps://github.com/matplotlib/matplotlib/issues?q=state%3Aopen%20label%3A%22topic%3A%20text%2Fusetex%22
https://github.com
Termshttps://docs.github.com/site-policy/github-terms/github-terms-of-service
Privacyhttps://docs.github.com/site-policy/privacy-policies/github-privacy-statement
Securityhttps://github.com/security
Statushttps://www.githubstatus.com/
Communityhttps://github.community/
Docshttps://docs.github.com/
Contacthttps://support.github.com?tags=dotcom-footer

Viewport: width=device-width


URLs of crawlers that visited me.